我是Entity Framework的新手,但是无法从以下数据库中获取所有数据:
我为上面显示的所有实体创建了控制器,如下所示:
// Retrieve entire DB
AareonAPIDBEntities dbProducts = new AareonAPIDBEntities();
// Get all customers
[System.Web.Http.AcceptVerbs("GET")]
[System.Web.Http.HttpGet]
[System.Web.Http.Route("customer")]
public IEnumerable<Customer> Default()
{
List<Customer> customers = dbProducts.Customers.ToList();
return customers;
}
//Get customer by ID
[System.Web.Http.AcceptVerbs("GET")]
[System.Web.Http.HttpGet]
[System.Web.Http.Route("customer/{id}")]
public Customer getById(int id = -1)
{
Customer t = dbProducts.Customers
.Where(h => h.customerID == id)
.FirstOrDefault();
return t;
}
现在,我很难找出如何通过PropertyLeaseContract
检索表customerID
中由外键链接的所有数据库数据。我正在尝试获取JSON响应,其中获取customersID
和值,其中包含来自链接的LeaseContract
和Property
的对象数组。
希望有人可以提供帮助。
谢谢!
答案 0 :(得分:0)
假设您的关系在DbContext配置中正确设置,并且您的实体类中具有适当的导航属性,则它应该像这样工作:
public Customer getById(int id = -1)
{
Customer t = dbProducts.Customers
.Where(h => h.customerID == id)
.Include(x => x.PropertyLeaseContracts)
.ThenInclude(x => x.LeaseContract)
.Include(x => x.PropertyLeaseContracts)
.ThenInclude(x => x.Property)
.FirstOrDefault();
return t;
}
为此,您的客户类需要具有PropertyLeaseContract的Collection属性并将其设置为OneToMany关系。 并且您的PropertyLeaseContract类需要具有LeaseContract和Property类型的Properties,并且必须正确设置。
编辑: 上面的代码仅在@TanvirArjel提到的Entity Framework Core中有效。 在实体框架中,完整代码应如下所示:
public Customer getById(int id = -1)
{
Customer t = dbProducts.Customers
.Where(h => h.customerID == id)
.Include(x => x.PropertyLeaseContracts.Select(plc => plc.LeaseContract))
.Include(x => x.PropertyLeaseContracts.Select(plc => plc.Property))
.FirstOrDefault();
return t;
}