我只是在玩这个Entity Framework 的Code First 示例,遇到了一个我不明白的问题。假设 POCO 对象和数据库上下文与示例中的相同,并且我的应用程序入口点中有以下代码:
var blog = new Blog { Name = "My Blog" };
var post = new Post {Title = "A Random Post", Blog = blog};
blog.Posts = new List<Post> {post};
db.Blogs.Add(blog);
var blog2 = new Blog {Name = "Another Blog", Posts = new List<Post> {post}};
db.Blogs.Add(blog2);
db.SaveChanges();
// Display all Blogs from the database
var query = from b in db.Blogs
orderby b.Name
select b;
Console.WriteLine("All blogs in the database:");
foreach (var item in query)
{
Console.WriteLine(item.Name);
foreach (var p in item.Posts)
{
Console.WriteLine(p.Title);
}
}
为什么在两个博客中都引用的帖子只出现在第二个博客中?SaveChanges
每次向数据库添加内容时都必须调用吗?