如何在 WPF 中将 DbSet 转换为 observableCollection?
我有一个首先使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是有关如何使用 本地用于数据绑定的
DbSet<>
的 属性。在 EF 4.1 中使用 DbContext 第 7 部分:本地数据
EF 功能 CTP5:具有主从 WPF 应用程序的代码优先模型
Here are some links on how to use the Local property of
DbSet<>
for data binding.Using DbContext in EF 4.1 Part 7: Local Data
EF Feature CTP5: Code First Model with Master-Detail WPF Application