So I am using ASP.NET Core 5, MySql, and Entity Framework in my project. Every class in my back end is Camel case, but when I create my database, all entities are lowercase. I would like to keep the Camil case in the database too. How do I do that?
Also, when scaffolding a MySql database (again ASP.NET Core 5 and Entity Framework and MySql, using the Package manager console) something similar happens - It generates classes, but only the first word is upper case, I want Camel case.
Thanks in advance.
Update: changing the lower_case_table_names property in my.ini file to any option - 0, 1 or 2 dors not change the files, they remain lowercase.