The goal:
I'm trying to use the new Entity Framework 4.1 DbContext API (using Database First with the new ADO.NET DbContext Generator for the POCO classes) and provide a layer of abstraction using basic, generic repositories.
The problem:
If I try to use a subquery with my repositories, EF cannot complete the translation and throws an error:
System.NotSupportedException: LINQ to Entities does not recognize the method 'System.Linq.IQueryable`1[EntityFramework41Test.Data.Entity.Table2] Query()' method, and this method cannot be translated into a store expression.
I've successfully used this design with the old 4.0 ObjectContext in the past, but I'd like to use the new API. The same approach also fails with the 4.0 ObjectContext API (tested using generated POCO entities).
Note: I don't think it's realistic to post hundreds of lines of code but I have a sample solution with an ASP.NET MVC 3 project using SQL Server CE 4.0 and a basic unit test project demonstrating the outcome of various approaches that can be uploaded or emailed if that helps.
The repository interface I am using is dead simple:
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);
}
The context interface is even more simple:
public interface ITestDbContext : IDisposable
{
IDbSet<TEntity> Set<TEntity>() where T: class, ITestEntity;
void Commit();
}
Here is the sample usage that does not work, using interfaces for the repository and context instances:
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();
}
The code above is the approach I'd like to use. The concrete classes will end up being injected.
Please disregard the fact that there are better ways to write this particular query than using a subquery. I've purposely simplified the code to focus on the actual issue: EF won't translate the query.
Storing the "inner" repository Query() method result in a local variable actually does work, but is not ideal as you'd have to remember to do it all the time.
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();
}
I've also noticed some other approaches break or succeed, e.g. disregarding the repositories and calling TestDbContext.Set<TEntity>() works but ITestDbContext.Set<TEntity>() won't translate. Changing the definition of ITestDbContext.Set<TEntity>() to return DbSet<TEntity> instead of IDbSet<TEntity> still fails.
Edit:
I don't think this is possible without some query interception and translation. If I do find a solution in the future, I'll be sure to share it.
HasMatches = SomeFunction()in contrast tobool value = SomeFunction(); ... HasMatches = valueThe first wouldn't work in LINQ to Entities, but the second does. LTE can work with anIQueryablein your subquery but not with a function which returns anIQueryable. But I am also surprised that this worked in EF 4.0 with the ObjectContext API. Ask your question also here (social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/…) to get hopefully developer attention. – Slauma May 16 '11 at 17:27IQueryablemethod calls, but I wonder if the query wrapping had side-effects that caused the above scenario to work. I'll see if I can get the above working with a vanilla EF 4.0 ObjectContext first (which should have been my first approach). Thanks for the MSDN forum link. – GWB May 16 '11 at 18:00