Entity Framework code first seems confused on my dbo table names after I tweaked the migration file
问题 I've just begun using Entity Framework 5 (Code First Migrations). I think my issue may just be a given to someone that's worked with this a bit longer than I have (this is our first project giving it a go). I have 3 tables involved. One is a cross reference table. The gist of the classes is as follows: public class Person { //person properties public virtual List<Roles> Roles {get;set;} } public class Role { //Role properties public virtual List<Person> Persons {get;set;} } Adding a migration