嵌套属性的 SetModifiedProperty

发布于 2025-01-07 05:37:17 字数 532 浏览 1 评论 0原文

如何为嵌套属性设置 SetModifiedProperty?换句话说,我有一个实体作者,其实体有一个书籍集合,我只需要更改一个书名。

    var existingAuthor = authors.FirstOrDefault(x => x.Id.Equals(authorId));
    var bestSellerBook = existingAuthor.Books.FirstOrDefault(x=> x.Id.Equals(bookId));
    existingAuthor.Name = "xxxxxxx";
    bestSellerBook.Name = "xxxxxxxxxxx";
    context.Authors.Attach(existingAuthor);  
    context.ObjectStateManager.GetObjectStateEntry(existingAuthor).SetModifiedProperty("Name");
    context.SaveChanges();

有什么建议吗?

How do you set up SetModifiedProperty for a nested property?, in other words, I have an entity author whose entity have a books collection, I need change just a book name.

    var existingAuthor = authors.FirstOrDefault(x => x.Id.Equals(authorId));
    var bestSellerBook = existingAuthor.Books.FirstOrDefault(x=> x.Id.Equals(bookId));
    existingAuthor.Name = "xxxxxxx";
    bestSellerBook.Name = "xxxxxxxxxxx";
    context.Authors.Attach(existingAuthor);  
    context.ObjectStateManager.GetObjectStateEntry(existingAuthor).SetModifiedProperty("Name");
    context.SaveChanges();

Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

近箐 2025-01-14 05:37:17

您必须获取持有已更改属性的实体的对象状态条目=在您的情况下它必须是书:

var existingAuthor = authors.FirstOrDefault(x => x.Id.Equals(authorId));
var bestSellerBook = existingAuthor.Books.FirstOrDefault(x=> x.Id.Equals(bookId));
bestSellerBook.Name = "xxxxxxxxxxx";
context.Authors.Attach(existingAuthor);  
context.ObjectStateManager.GetObjectStateEntry(bestSellerBook).SetModifiedProperty("Name");
context.SaveChanges();

You must get object state entry for the entity holding the property which has changed = in your case it must be the book:

var existingAuthor = authors.FirstOrDefault(x => x.Id.Equals(authorId));
var bestSellerBook = existingAuthor.Books.FirstOrDefault(x=> x.Id.Equals(bookId));
bestSellerBook.Name = "xxxxxxxxxxx";
context.Authors.Attach(existingAuthor);  
context.ObjectStateManager.GetObjectStateEntry(bestSellerBook).SetModifiedProperty("Name");
context.SaveChanges();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文