使用 AsNoTracking 验证失败

发布于 2024-12-12 04:04:48 字数 468 浏览 0 评论 0原文

我正在尝试在我的上下文中添加一个新实体,如下所示:

article.Id = 1;
var rede = from r in mycontext.Redevable.AsNoTracking()
           where r.Matricule == "0001414"
           select r;

article.Redevable = rede.First<Redevable>();
...

mycontext.Article.Add(article);
mycontext.SaveChanges();

我收到一个 DbEntityValidationException 异常,表示 Redevable 是强制性的,因为属性“Redevable”被标记为“必需”。

如果我删除“AsNoTracking”,它工作正常,但性能非常糟糕。

你能帮我吗?

提前致谢。

i'm trying to add a new entity in my context like that :

article.Id = 1;
var rede = from r in mycontext.Redevable.AsNoTracking()
           where r.Matricule == "0001414"
           select r;

article.Redevable = rede.First<Redevable>();
...

mycontext.Article.Add(article);
mycontext.SaveChanges();

and i get a DbEntityValidationException saying that the Redevable is mandatory because the property "Redevable" is marker as Required.

It works fine if i remove "AsNoTracking" but the performance are very bad.

Could you help me ?

Thanks in advance.

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

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

发布评论

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

评论(2

冷清清 2024-12-19 04:04:48

您可以仅使用 Id 创建 Fk 属性,如下所示:

public int RedevableId { get; set; }

public Redevable Redevable{ get; set; }

然后从 Redevable 实例设置它:

article.RedevableId = rede.First<Redevable>().Id;  

然后保留您的更改:

mycontext.Article.Add(article);      
mycontext.SaveChanges();

You can create a Fk Property only with the Id like this:

public int RedevableId { get; set; }

public Redevable Redevable{ get; set; }

and then set it from the Redevable instance:

article.RedevableId = rede.First<Redevable>().Id;  

then persist your changes:

mycontext.Article.Add(article);      
mycontext.SaveChanges();
北笙凉宸 2024-12-19 04:04:48

AsNoTracking() 意味着您无法更新这些实体而不将它们重新附加到跟踪图。有关更多详细信息请参阅

// Attaches the entity and then save
context.Entry(article).State = EntityState.Modified;
context.SaveChanges();

AsNoTracking() means that you cant update these entities without reattaching them to the tracking graph. For more details see

// Attaches the entity and then save
context.Entry(article).State = EntityState.Modified;
context.SaveChanges();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文