I am working with old code from v2.6, bringing it into LLBLGen Pro 5.3. The main issue I'm running up against is that I have a Field table that maps to the FieldBaseEntity/FieldEntity class. When I generate the code in 5.3 (SelfServicing/TwoClasses), the QueryFactory throws a name conflict error because of the following 2 lines:
public EntityField Field(string fieldName)
{
return Field<object>(string.Empty, fieldName);
}
...
public EntityQuery<FieldEntity> Field
{
get { return Create<FieldEntity>(); }
}
The specific error is:
The type 'QueryFactory' already contains a definition for 'Field'
What would be the most elegant way to handle this?