gpt4 book ai didi

c# - 如何在导航属性上将 IsModified 设置为 false

转载 作者:行者123 更新时间:2023-12-05 08:32:15 25 4
gpt4 key购买 nike

我有 ArticleApplicationUser 模型类:

public class ApplicationUser
{
...

}

public class Article
{
...

public ApplicationUser CreatedBy { get; set; }
}

我尝试通过这种方式将 CreatedBy 属性设置为 false:

base.Entry(entity).Property(x => x.CreatedBy).IsModified = false;

但是我得到这个错误:

The property 'CreatedBy' on entity type 'ApplicationUser' is being accessed using the 'Property' method, but is defined in the model as a navigation property. Use either the 'Reference' or 'Collection' method to access navigation properties.

最佳答案

如果我理解正确,文章实体可能看起来像:

public class Article
{
public int Id { get; set; }

public string UserID { get; set; }

// ...

[ForeignKey("UserID")]
public ApplicationUser CreatedBy { get; set; }
}

如错误信息所述,CreatedBy 是此处的导航属性。

所以把你的代码改成

Entry(entity).Reference(x => x.CreatedBy).IsModified = false; ,

它可能会按预期工作。

关于c# - 如何在导航属性上将 IsModified 设置为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52362762/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com