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?