目标:
我试图使用新的Entity Framework 4.1 DbContext API(使用数据库优先与新的ADO.NET DbContext生成器进行POCO类),并使用基本的通用存储库提供一层抽象.
我试图使用新的Entity Framework 4.1 DbContext API(使用数据库优先与新的ADO.NET DbContext生成器进行POCO类),并使用基本的通用存储库提供一层抽象.
问题:
如果我尝试在我的存储库中使用子查询,EF无法完成翻译并发出错误:
System.NotSupportedException:LINQ to Entities不能识别方法’System.Linq.IQueryable`1 [EntityFramework41Test.Data.Entity.Table2] Query()’方法,而且这种方法不能转换为存储表达式.
过去我已经成功地使用了旧的4.0 ObjectContext设计,但是我想使用新的API.同样的方法也与4.0 ObjectContext API(使用生成的POCO实体进行测试)失败.
注意:我不认为发布数百行代码是现实的,但是我有一个使用sql Server CE 4.0的ASP.NET MVC 3项目的示例解决方案,以及一个基本的单元测试项目,展示了可以使用的各种方法的结果如果有帮助,上传或发送电子邮件.
我使用的存储库界面是简单的:
public interface IRepository<TEntity> : IDisposable where TEntity : class,ITestEntity { TEntity GetById(int id); IQueryable<TEntity> Query(); void Add(TEntity entity); void Remove(TEntity entity); void Attach(TEntity entity); }
上下文界面更简单:
public interface ITestDbContext : IDisposable { IDbSet<TEntity> Set<TEntity>() where T: class,ITestEntity; void Commit(); }
以下是使用存储库和上下文实例的接口的示例用法:
using (ITestDbContext context = new TestDbContext()) using (IRepository<Table1> table1Repository = new Repository<Table1>(context)) using (IRepository<Table2> table2Repository = new Repository<Table2>(context)) { // throws a NotSupportedException var results = table1Repository.Query() .Select(t1 => new { T1 = t1,HasMatches = table2Repository.Query() .Any(t2 => t2.Table1Id == t1.Id) }) .ToList(); }
请不要使用比使用子查询更好的方法来编写这个特定的查询.我有意地简化了代码,专注于实际问题:EF不会翻译查询.
存储“内部”存储库Query()方法导致一个局部变量实际上是有效的,但并不理想,因为你必须记住这样做.
using (ITestDbContext context = new TestDbContext()) using (IRepository<Table1> table1Repository = new Repository<Table1>(context)) using (IRepository<Table2> table2Repository = new Repository<Table2>(context)) { var table2RepositoryQuery = table2Repository.Query(); // this time,it works! var results = table1Repository.Query() .Select(t1 => new { T1 = t1,HasMatches = table2RepositoryQuery .Any(t2 => t2.Table1Id == t1.Id) }) .ToList(); }
我也注意到其他一些方法破裂或成功,例如不考虑存储库并调用TestDbContext.Set< TEntity>()工作,但ITestDbContext.Set< TEntity>()将不会转换.更改ITestDbContext.Set< TEntity>()的定义以返回DbSet< TEntity>而不是IDbSet< TEntity>仍然失败