Guidance for synchronising reverse associations in Entity Framework 4.1
问题 EF 4.1 synchronises reverse associations when you create your instances. Is there any documentation of or best practices guidance available for this behaviour? What I mean by synchronising the reverse association is that given: public class Blog { public Blog() { Posts = new List<Blog>(); } public int Id { get; set; } public ICollection<Post> Posts { get; private set; } } public class Post { public Blog Blog { get; set; } public int Id { get; set; } } Then after the following line the Post