使用存储库模式,我有一个EFRepository
T 类型的通用存储库(使用泛型)。
我有一个称为AllIncluding
用于获取实体及其任何子实体的方法:
public IQueryable<T> AllIncluding(params Expression<Func<T,
object>>[] includeProperties)
{
IQueryable<T> query = _dbSet;
foreach (var includeProperty in includeProperties)
{
query = query.Include(includeProperty);
}
return query;
}
在调用中使用以下语法:
_machineRepository.AllIncluding(machine => machine.InstalledOS,
machine => machine.LicenceType,
machine => machine.User);
我的机器类看起来像这样(省略了一些细节):
public class Machine
{
public int MachineId { get; set; }
public int InstalledOSId { get; set; }
public InstalledOS InstalledOS { get; set; }
public int LicenceTypeId { get; set; }
public LicenceType LicenceType { get; set; }
public int UserId { get; set; }
public User User { get; set; }
}
我发现,在我为机器实体渲染视图(使用 ASP.NET MVC 4 beta)时,未填充已安装的操作系统和许可证类型实体,它们似乎已实例化,但 ID 为 0 和其他属性为空。直接在 Machine 实体中,InstalledOSId 和 LicenceTypeId 属性填充了正确的 Id。
如果我将应用程序一直调试到 AllIncluding 方法,我可以看到构造的 SELECT 查询包含正确的表和连接,但仍然没有骰子。
我不确定它是否有任何后果,但我将 IQueryable 一直传回控制器。我假设视图渲染(返回视图(结果))可以管理枚举?