I'm in an ASP.NET MVC 5 application, setting up a DbContext
class.
When EF generates the database, the tables for the application objects are getting the plural names in English. For example:
public System.Data.Entity.DbSet<Teste.Models.Pastel> Pastel { get; set; }
In the database, the tables look like this:
dbo.pastels
Is there a way to configure application pluralization for pt-BR?