Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems like putting this code into the project allows you to turn off the plurals naming convention. (according to several posts on Stackoverflow)

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
    }

I could not get this to work without adding a DbInit statement to my Global.asax.cs Application_Start() method

        var dbInitSettings = new DropCreateDatabaseIfModelChanges<SomeProjectContext>();
        Database.SetInitializer<SomeProjectContext>(dbInitSettings);

Now I get the data back from an WebAPI call. (1 record) but it is redicuously slow. What am I missing? It seems like if the Context class is not seen early in the process turning Plurals off means nothing. Am I wrong?

share|improve this question

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.