Hi,
My current DB schema has a table called EntityType and when I generate code via LLBLGen the project fails to build LinqMetaData.cs method: public IDataSource GetQueryableForEntity(int typeOfEntity).
Now I could rename my table or rename the name of the object generated to avoid the conflict but I was wondering if the generated code could use the full (or more of) the namespace?
IDataSource toReturn = null;
switch((EntityType)typeOfEntity)
{
e.g.: case Data.EntityType.AddressEntity:
instead of: EntityType.AddressEntity:
Not a big deal as there are ways around it but I thought I would just throw it out there.
Cheers,
John