Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was just playing with System.Data.Entity.Design.PluralizationServices.PluralizationService.

Have you experienced issues with this function?

If I have a string var with value "ducks" and run

string noun = "ducks";

noun = System.Data.Entity.Design.PluralizationServices.PluralizationService.CreateService(System.Globalization.CultureInfo.CurrentUICulture).Singularize(noun);

I still get the plural.

Yet if I do the same with a literal string it works as expected.

string noun = string.Empty;

noun = System.Data.Entity.Design.PluralizationServices.PluralizationService.CreateService(System.Globalization.CultureInfo.CurrentUICulture).Singularize("ducks");
share|improve this question
Can't reproduce your issue. How do you test your code? – ken2k Aug 10 '12 at 15:08
I can reproduce it with the above lines of code. I just threw the above in a little console app to try it out. – matt.whitby Aug 10 '12 at 21:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.