我正在使用带有 EF DbContext 的 WCF 数据服务 5.0。
我看到旧文章说您可以使用 Expand 和 LoadProperty 让 WCF 在一个请求中返回相关实体。
我在 DbContext 中看到的唯一等价物是 Include,但这似乎不起作用。
使用 DbContext 时,有没有办法加载所有相关记录?
我正在使用以下代码(一个 CategoryGroup 可以包含许多 Category 实体):
[WebGet]
public IQueryable<CategoryGroup> GetAllCategories(string activationCode)
{
try
{
var db = this.CurrentDataSource;
var licence = db.Licenses
.Include("Contact")
.FirstOrDefault();
if (licence != null)
{
var customerId = licence.Contact.CustomerId;
return db.CategoryGroups.Include("Categories").Where(r => r.CustomerId == customerId);
}
}
catch(Exception ex)
{
}
return new List<CategoryGroup>().AsQueryable();
}
此函数仅返回 OData 格式的 CategoryGroup 实体(没有相关的 Category 实体)。