what's the best solution for Many to Many Relation in .Net Core(EF Core)? [duplicate]
问题 This question already has an answer here : Entity Framework Core many-to-many navigation issues (1 answer) Closed 10 months ago . as you know we don't have automatic Many to Many Relations between Entities in EF Core. whats the best solution to achieve that? here what I create for do that: class Student { public int StudentId { get; set; } public string Name { get; set; } public string Family { get; set; } public List<StudentCourse> Courses { get; set; } } class Course { public int CourseId {