Why does Entity Framework generate a “EmployeesProjects” when I migrate for a Many-to-Many Relationship? I’ve already defined another one?
I have two entities: Employeees
and Projects which have the relationship of Many-to-Many. I defined a ProjectEmployee
for that, but when I add migration, it still creates a EmployeesProjects
. Why does this happen and how can I fix that? Thank you guys!
Entity Framework: Many-To-Many – Why does it generate a “EmployeesProjects” when I migrate? I’ve already defined another one?
I have two entities: Employeees
and Projects which have the relationship of Many-to-Many. I defined a ProjectEmployee
for that, but when I add migration, it still creates a EmployeesProjects
. Why does this happen and how can I fix that? Thank you guys!