我按照这里的帖子使用 Entity Framework 6.0 设置我的 WCF 数据服务:http: //blogs.msdn.com/b/astoriateam/archive/2013/10/02/using-wcf-data-services-5-6 -0-with-entity-framework-6.aspx
将 DataService 转换为 EntityFrameworkDataService 后,我无法编译我的项目,这是因为我对 CurrentDataSource 的调用并未翻译我的 Context 上的所有方法。使用常规 DataService,我能够调用 CurrentDataSource.getEmployees() 复杂类型并且一切正常。但是,使用新的 EntityFrameworkDataService getEmployees() 不再可用。我在这里想念什么?