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: RoMiller said "We concluded that the whole pluralization infrastructure is poorly designed as any changes we make can potentially break existing models. You can extend/customize the service yourself but we aren't going to take changes to it. As an aside, we've decided to do away with pluralizing/singularizing things by default in EF7."
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: RoMiller said "We concluded that the whole pluralization infrastructure is poorly designed as any changes we make can potentially break existing models. You can extend/customize the service yourself but we aren't going to take changes to it. As an aside, we've decided to do away with pluralizing/singularizing things by default in EF7."