Hi,
I have a table name like: MyLongNameTable_TAS
It always ends up as: MyLongNameTable_TA
How can I stop it from dropping the final S in the table name?
I have tried:
Thanks
I have a table name like: MyLongNameTable_TAS
It always ends up as: MyLongNameTable_TA
How can I stop it from dropping the final S in the table name?
I have tried:
Inflector.PluralizationService = new EnglishPluralizationService(new[]
{
new CustomPluralizationEntry("MyLongNameTable_TAS", "MyLongNameTable_TAS")
});
but it hasn't helped. Any ideas?Thanks