is it possible to share POCO object between two DbContext?
问题 I have some POCO classes which can generally divided into two groups, for example: public class Student { public Student() { this.Courses = new List<Course>(); this.Clubs = new List<Club>(); } public int Id { get; set; } public virtual ICollection<Course> Courses { get; set; } public virtual ICollection<Club> Clubs { get; set; } } and corresponding Course and Club classes, and they all have their own relationships to other classes. The problem is, those two groups are big, they both contains