LLBL 4.0 Final
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
Database first Code Generation
Visual Studio 2010 using C#
Target Framework LLBL Gen Pro Runtime Framework
Target language C#, platform .NET 4.0
Template Self Servicing
Selected Preset SD.Presets.SelfServicing.General
I am updating a C# project built with LLBL 2.0. The original developer did not leave us with the LLBL project so I have to guess what to do based on the decompiled LLBL 2 source code.
In the original source code in a dll called <project name>.LLBL.Support.dll, v2.0.50727 is this code
using System;
namespace SD.LLBLGen.Pro.ORMSupportClasses
{
public interface IEntityDate
{
int CreatedByUserId { get; set; }
DateTime DateCreated { get; set; }
DateTime DateLastModified { get; set; }
int LastModifiedByUserId { get; set; }
}
}
These four fields are found in hundreds of tables in the schemas. How would I duplicate this in the new LLBL project?
I created a custom Value Type but am unsure what to do next. Is this a custom property or task to add this Value type to the tables that the fields with the Value type fields?
Thanks