Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save angelobelchior/10601517 to your computer and use it in GitHub Desktop.
Save angelobelchior/10601517 to your computer and use it in GitHub Desktop.
Removendo a Pluralização das Tabelas no EF
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment