实体框架集合绑定到列表框以反映更改

发布于 2024-09-12 14:43:24 字数 295 浏览 6 评论 0原文

我正在使用实体框架类对数据库进行更改,如下所示:

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

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

发布评论

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

评论(1

风吹短裙飘 2024-09-19 14:43:24

就差一步了。尽量不要使用声明性数据源,而是使用查询。
在这种情况下,您可以更好地灵活性并完全控制数据绑定过程。这是一个小示例:

    private void Form1_Load (object sender, EventArgs e) {
      listBox1.DataSource = context.MASTER.Select(m => m.DATA);
    }

    private void button1_Click (object sender, EventArgs e) {
      context.AddToMASTER(new MASTER
      {
        ID = 5,
        DATA = "5"
      });
      context.SaveChanges();
      listBox1.DataSource = context.MASTER.Select(m => m.DATA);
    }

您还可以将查询的代码放入单独的 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:

    private void Form1_Load (object sender, EventArgs e) {
      listBox1.DataSource = context.MASTER.Select(m => m.DATA);
    }

    private void button1_Click (object sender, EventArgs e) {
      context.AddToMASTER(new MASTER
      {
        ID = 5,
        DATA = "5"
      });
      context.SaveChanges();
      listBox1.DataSource = context.MASTER.Select(m => m.DATA);
    }

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.

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