I have been getting LINQ errors around duplicate classes within the assembly. Not that this is this projects fault, but it set me to looking for duplicates.
I noticed that none of the entities have been pluralized, which might fix this issue. There are instructions on disabling or changing the pluralizer
Inflector.PluralizationService = new EnglishPluralizationService();
but how can I verify its working? or if I set something up wrong.
Comments: As you know, the English pluralisation service is written by Microsoft, and most probably, very well tested. I've no control on how it performs its pluralisation. The pluralisation service comes with EntityFramework 6. All you can do is make sure you have the latest EntityFramework version installed, which at this moment in time is v6.1.1 Do you get LINQ errors when you turn the pluralisation service off?
I noticed that none of the entities have been pluralized, which might fix this issue. There are instructions on disabling or changing the pluralizer
Inflector.PluralizationService = new EnglishPluralizationService();
but how can I verify its working? or if I set something up wrong.
Comments: As you know, the English pluralisation service is written by Microsoft, and most probably, very well tested. I've no control on how it performs its pluralisation. The pluralisation service comes with EntityFramework 6. All you can do is make sure you have the latest EntityFramework version installed, which at this moment in time is v6.1.1 Do you get LINQ errors when you turn the pluralisation service off?