EF core 6 wrong entity name in scaffolding db first

Viewed 22

I have a db on SqlServer whose tables are all identical and named after italian towns (like Roma , Torino etc). When launching the scaffold-dbcontect command to create the model , I get a corresponding number of entities which have the same name of the tables, as I expected : just one of the entities, the last one , corresponding to the italian town of Venezia, is named as "Venezium" instead of Venezia . What could be the reason ? I guess its a bug in EF core 6 since I have no customization of any kind in my project.

1 Answers
Related