Hello,
I created a model first project but i have a question about SQL generation.
Here is the llblgen example
BaseDomain
PKID -> Guid -> PK
Deleted -> Bool
CreatedOn -> DateTime
CreatedBy -> Guid (references to user.PKID)
ModifiedOn -> DateTime
ModifiedBy -> Guid (references to user.PKID)
DeletedOn -> DateTime
DeletedBy -> Guid (references to user.PKID)
User -> subtype of Basedomain
Firstname string
Lastname string
Role -> subtype of Basedomain
Description string
UserRoles -> subtype of Basedomain
RoleFKId -> Guid (references to Role.PKID)
UserFKId -> Guid (references to user.PKID)
If we look to the entity Role there is only 1 field (in black)
and 8 fields in gray (from Basedomain)
Great so far.
But what i espect that is that the table role in the database has 9 fields instead of 1.
In Codefirst generation this is normal behavoir, but can this be done with LLBLgen ?
Is there a demo llblgenproj file i can learn from ?
thanks