I am having problems with some generated subtype entities. The no-parameter constructor for these subtypes is not setting the LLBLGenProEntityName to the name of the subtype...all the constructors that take parameters call SetName(...) but the default constructor does not. This is due to the template code:
''' <summary>CTor</summary>
<[If IsAbstract]>Friend<[Else]>Public<[EndIf]> Sub New()
<[If Not IsSubType]> MyBase.New("<[CurrentEntityName]>Entity")
InitClassEmpty(CreateValidator(), CreateFields())<[EndIf]>
End Sub
Is this missing a call to SetName?