Complex Types don't produce any code
Posted: Fri 11 Apr 2014 18:08
I've added a few complex types and there are no definitions anywhere in the generated code so there are lots of undefined types and nothing builds
e.g.
Create a complex type AccPacIdType which contains a single property that is a string mapped to a sql server varchar(50). The generated code looks like this for a mapped entity that contains this type
TCustomer = class(TMappedEntity)
private
...
FAccPacID: TAccPacIdTypeAttribute;
...
function GetAccPacID: AccPacIdType;
procedure SetAccPacID(const Value: AccPacIdType);
but there is no definition for AccPacIdType
e.g.
Create a complex type AccPacIdType which contains a single property that is a string mapped to a sql server varchar(50). The generated code looks like this for a mapped entity that contains this type
TCustomer = class(TMappedEntity)
private
...
FAccPacID: TAccPacIdTypeAttribute;
...
function GetAccPacID: AccPacIdType;
procedure SetAccPacID(const Value: AccPacIdType);
but there is no definition for AccPacIdType