Hi, i have problem:
update nuget from 2.2 to the latest.
The type name is generated in a new way for schemes other than "dbo".
Was:
public ITable<AccessContext> AccessContext
Now
public ITable<access_AccessContext> AccessContext
is it possible to set my own Class name?
thank you
You can disable this feature using
PrefixTableMappingWithSchema = false;
https://github.com/linq2db/linq2db/tree/master/Source/LinqToDB.Templates#configuring-generation-process
or rename mappings using code similar to properties rename here
https://github.com/linq2db/linq2db/tree/master/Source/LinqToDB.Templates#example-of-generation-process-customization
Everything is ok, thank you.
Most helpful comment
You can disable this feature using
https://github.com/linq2db/linq2db/tree/master/Source/LinqToDB.Templates#configuring-generation-process
or rename mappings using code similar to properties rename here
https://github.com/linq2db/linq2db/tree/master/Source/LinqToDB.Templates#example-of-generation-process-customization