I am building an asp.net core web application. I just migrated my database from MariaDB to PostgreSQL. After the succesful migration I found out that all my table and column names were renamed to lowercase. Because of this, Entity Framework Core does not find tables in my database and columns in my table.
Im wondering if there is any way to:
- Avoid this from happening (keep the Case and not rename it to lowercase)
- Configure Entity Framework Core to not be case sensitive
Kind regards, Brian