实体框架:插入一条新记录并更新该记录的信息

发布于 2024-11-01 04:39:13 字数 511 浏览 0 评论 0原文

我不知道我该如何处理这种情况,你能帮助我吗?

一个。 我向表中插入一条新记录

var news = new News();

News.Title = "Hello World";

myRepository.InsertNews(catId,news);

在 InsertNews() 函数中,我调用 myDbContext.SaveChanges();并将新记录插入数据库。此时,我已经有了新记录的Id。

b. 获得新记录的 id 后,我需要调用其他函数来处理一些业务并获取数据以更新新记录。

news.Metadata = newData;

我调用 myDbContext.SaveChanges();

我的系统显示错误消息。 属性“Id”是对象关键信息的一部分,无法修改。

请帮我解决此问题。谢谢

I don't know how I can handle this situation, Can you help me ?

a. I insert a new record to a table

var news = new News();

News.Title = "Hello World";

myRepository.InsertNews(catId,news);

In InsertNews() function, I call myDbContext.SaveChanges(); and new record is inserted into database. In this time, I already have Id of new record.

b. After I have id of new records, I need do call other functions to process some business and get data back to update new record.

news.Metadata = newData;

and I call myDbContext.SaveChanges();

My system displays an error message.
The property 'Id' is part of the object's key information and cannot be modified.

Please help me resolve this issue. Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文