如何在 ADO.NET 实体框架中更新记录而不再次选择该记录?
大家好,我正在做这样的事情 -
void update(ClasstoUpdate obj)//obj is already having values to update...
{
var data= (from i in Entityobject.ClasstoUpdate
where obj.Id==i.Id
select i).FirstorDefault();
data.Name="SomeCoolName";
EntityObject.SaveChanges();
}
我想执行更新而无需再次使用 Id 查询,有什么方法可以将更新后的对象传递给 ADO.NET 实体框架并对其进行更新。如果我丢失了,我很抱歉这里有一些东西,但这就是我一直在做的方式,想知道是否有一个简单的更新方法。谢谢。
Hi all I am doing something like this -
void update(ClasstoUpdate obj)//obj is already having values to update...
{
var data= (from i in Entityobject.ClasstoUpdate
where obj.Id==i.Id
select i).FirstorDefault();
data.Name="SomeCoolName";
EntityObject.SaveChanges();
}
I want to perform an update without again querying using the Id,is there any way I just pass the updated object to ADO.NET Entity framework and it updates it.I am sorry if I am missing something here but this is the way i have been doing it wondering if there is a simple way to update. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新对象的简单方法是获取它、更改它并提交更改,这就是您已经在做的事情。
另一种方法是附加对象,并告诉实体框架对象处于修改状态。
第三种方法是通过构造一个 SQL 字符串来更新对象,该 SQL 字符串直接在数据库中更新对象而不获取它。不过我不建议这样做。
旁注:记得检查函数中是否为空。如果您知道
FirstOrDefault
的返回值永远不会为 null,那么您应该使用First
来代替。您可能还需要考虑使用Single
而不是First
。The simple way to update an object is fetch it, change it, and submit changes which is what you're already doing.
Another way is to attach the object, and tell the entity framework that the object is in a modified state.
A third way is to update the object by constructing an SQL string that updates the object directly in the database without fetching it. However I wouldn't recommend doing this.
A side note: remember to check for null in your function. If you know the return value of
FirstOrDefault
will never be null then you should useFirst
instead. You might also want to consider usingSingle
instead ofFirst
.