实体框架集合绑定到列表框以反映更改
我正在使用实体框架类对数据库进行更改,如下所示:
testEntities.Products.AddObject(product);
我有一个绑定到 testEntities.Products 的列表框,它正确地显示了它们,但是当我添加新对象并保存更改(testEntities.SaveChanges())时,产品出现在数据库中,但列表框却没有已更新。
我真的希望来自 EF 的那些对象集合是“可观察的”。有没有一种简单的方法可以实现这一目标?
多谢!
(我使用的是VS.NET 2010)
I'm using the Entity Framework classes to make changes to my database like this:
testEntities.Products.AddObject(product);
I've got a ListBox bound to testEntities.Products and it shows them correctly, but when I add a new object and I save the changes (testEntities.SaveChanges()), the product appears into the database, but the ListBox isn't updated.
I really would like that those object collections from the EF would be "observable". Is there a simple way to achieve this?
Thanks a lot!
(I'm using VS.NET 2010)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就差一步了。尽量不要使用声明性数据源,而是使用查询。
在这种情况下,您可以更好地灵活性并完全控制数据绑定过程。这是一个小示例:
您还可以将查询的代码放入单独的 RefreshList 方法中,只需在代码中需要刷新列表时调用此方法即可。如果您有一组这些列表框和其他数据绑定控件,这也会很方便。
Just a step away. Try not to use declarative DataSource, but a query instead.
In this case you have better flexibility and full control over the data binding process. Here is a small sample:
You can also put the code of the query into a separate RefreshList method, and simply call this method when you need to refresh the list in the code. That will be convenient also if you have a set of these list boxes and other databound controls.