如何在 WPF 中将 DbSet 转换为 observableCollection?

发布于 2024-12-18 02:13:52 字数 294 浏览 2 评论 0原文

我有一个首先使用 EF4.1 代码创建的数据库。数据上下文如下:

public DbSet<User> Users { get; set; }
public DbSet<Address> Addresses { get; set; }

我想通过将 users.Address 绑定到 ViewModel 场景中的数据网格来显示用户的地址。问题是我无法将 Users.Address 转换为可以将集合绑定到其中的列表。有什么建议吗?

I have a database which is created using EF4.1 code first. The data context is as follow:

public DbSet<User> Users { get; set; }
public DbSet<Address> Addresses { get; set; }

I want to show address for a user by binding the users.Address to a datagrid in a ViewModel scenario. The problem is that I cannot convert Users.Address into a list that I can bind a collection into it. Any suggestion?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文