我目前有一个完整的通用存储库,但我缺少一个功能,那就是使用
Include()和Find()
一起。
所以现在我有:
public E FindById<E>(int id) where E : class
{
return DataContext.Set<E>().Find(id);
}
调用使用
var person = PersonRepo.FindById<Person>(personId);
我想要类似的东西:
var person = PersonRepo.FindByIdWithIncludes<Person>(personId,new[]{"State.Address"});
所以,沿着这条线的东西(这只是一个测试):
public E FindByIdWithIncludes<E>(int id, string[] includes) where E : class
{
var entitySet = DataContext.Set<E>();
DbQuery<E> entityQuery;
foreach (var include in includes)
{
entityQuery = entitySet.Include(include);
}
return entityQuery.Find(id); //this is were it breaks
}
可能吗?