实体框架:插入一条新记录并更新该记录的信息
我不知道我该如何处理这种情况,你能帮助我吗?
一个。 我向表中插入一条新记录
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个线程:
属性“Id”是对象关键信息的一部分,无法修改
Look at this thread :
The property 'Id' is part of the object's key information and cannot be modified