1
I am in an ASP.net MVC 5 application, configuring a class DbContext
.
When the EF generates the database, the tables referring to the application objects are getting the names in the plural in English. For example:
public System.Data.Entity.DbSet<Teste.Models.Pastel> Pastel { get; set; }
In the bank, the tables look like this:
dbo.pastels
There is a way to set the application’s plurarization to en-BR?
A solution for the name of the seats is to note the Class with
[Table("NomeTabela")]
– DiegoAugusto