我有一个具有所有常见操作的通用存储库。我有两张表客户和地址。客户中引用了地址
public IEnumerable<TEntity> GetAll()
{
return context.Set<TEntity>();
}
下面是我的仓库
Repository<Customer> customerRepostitory = new Repository<Customer>();
var cusotomerList = customerRepostitory.GetAll();
上面的行只是返回客户列表,它不包括地址详细信息。当我调用父记录时,您能建议检索子记录的最佳方法吗?