如何在 ADO.NET 实体框架中更新记录而不再次选择该记录?

发布于 2024-09-02 04:55:05 字数 424 浏览 2 评论 0原文

大家好,我正在做这样的事情 -

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 技术交流群。

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

发布评论

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

评论(1

戒ㄋ 2024-09-09 04:55:05

更新对象的简单方法是获取它、更改它并提交更改,这就是您已经在做的事情。

另一种方法是附加对象,并告诉实体框架对象处于修改状态。

第三种方法是通过构造一个 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 use First instead. You might also want to consider using Single instead of First.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文