使用 LINQ to Entities 添加和更新

发布于 2024-07-12 04:41:00 字数 665 浏览 7 评论 0原文

我们在项目中使用 L2E 和 REST,虽然我能够毫无问题地从数据库检索数据,但我仍然无法更新或向数据库添加新记录。 我认为这是一个语法问题(我们对 linq 还很陌生),但我一直无法弄清楚。 我们最初在 dataservicecontext 中加载数据,并在进行更新时将其存储在绑定源的 CurrencyManager.Current 中。 但是,当我调用 SaveChanges 时,数据库中没有任何内容被修改,我不知道为什么。

例如,

加载数据:

 var customerQuery = Program.Proxy.Customers.Where(p => p.ContactId == g);

保存数据:

 Program.Proxy.SaveChanges();

我已经确认正在跟踪内存中实体的更新副本,因此我不需要调用 AddObject,但出现错误(“封闭类型 Lynxphere.WindowsClient.LynxphereDataServices.Customers 没有相应的 Customers 可设置属性。”)如果我尝试调用 AddLink。 而且我什至不确定这一步是否必要。 帮助将不胜感激。

We are using L2E and REST in our project, and while I have been able to retrieve data from the db without issue, I am still not able to update or add new records to the db. I imagine that it's a syntax problem (we're still new to to linq), but I haven't been able to figure it out. We initially load the data in the dataservicecontext, and when updates are made they are stored in the CurrencyManager.Current of the binding source. However, when I call SaveChanges nothing gets modified in the db, and I don't know why.

For example,

Loading the data:

 var customerQuery = Program.Proxy.Customers.Where(p => p.ContactId == g);

Saving the data:

 Program.Proxy.SaveChanges();

I've confirmed that the updated copy of the entity in memory is being tracked, so I don't need to call AddObject, but I get an error ("The closed type Lynxphere.WindowsClient.LynxphereDataServices.Customers does not have a corresponding Customers settable property.") if I try to call AddLink. And I'm not even sure if this step is necessary. Help would be greatly appreciated.

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

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

发布评论

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

评论(1

舞袖。长 2024-07-19 04:41:00

查看我的带有 Save() 函数的存储库模式,该模式发布在下面的项目中。
实现了 EntityProductRepository。
这可能会帮助您正确执行更新和插入。

openticket.codeplex.com

Have a look on my repository pattern with a Save() function, published in the project below.
There is a EntityProductRepository implemented.
That might help you to do the Updates and Inserts correctly.

openticket.codeplex.com

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