Mysql – Why is EF Core making up fictional table names?
EF core keeps making up table names and columns? Table 'player_roles' doesn't exist Bare in mind I'm using snake_case column naming. I have 5 tables players players_roles (bridge table) roles roles_permissions (bridge table) permissions With the following entities: public class…