【发布时间】:2015-02-15 20:59:03
【问题描述】:
我正在使用 WPF MVVMLight 和 RadGridView (Telerik) 开发应用程序。 我正在尝试绑定
private readonly QueryableEntityCollectionView<Customer> _view;
this._view = new QueryableEntityCollectionView<Customer>(__, "Customer");
但是 QueryableEntityCollectionView 只接受 objectcontext,我正在使用 EF6 Codefirst 进行开发,我不知道如何使用 objectContext
请帮忙
【问题讨论】:
标签: wpf telerik ef-code-first telerik-grid