我正在尝试在我的域服务(VS 2010 Silverlight业务应用程序)中创建一个查询,该查询返回作为特定值出现的检查读数的结果,我的数据库设置为:
Locations
a) Inspections
b) InspectionItems
c) InspectionReadings
a) Areas
b) Inspections
c) InspectionItems
d) InspectionReadings
因此,正如您所看到的,区域和位置下的位置有检查读数。我有一个名为StatusList的POCO:
public class StatusList
{
[Key]
[Editable(false)]
public Guid ID { get; set; }
public string LocationName { get; set; }
public DateTime LastInspectionDate { get; set; }
public string Status { get; set; }
}
我用它来返回查询结果:
public IQueryable<StatusList> GetLocationStatus()
{
var status = (from location in this.ObjectContext.Locations
where location.InspectionReadings.Status == value
orderby a.DateTaken
select new LocationStatusList()
{
ID = a.ID,
LocationName = d.Name,
}).ToList<StatusList>();
return status;
}
不幸的是,它正在返回标题中的错误,我不知道为什么因为列表显然是列表项并且我已经转换了结果
.ToList<LocationStatusList>
答案 0 :(得分:22)
问题恰恰是,因为你已经调用了ToList()
。您已声明要返回IQueryable<LocationStatusList>
,而List<T>
未实现IQueryable<T>
。
选项(选择一个):
ToList
来电IEnumerable<LocationStatusList>
,IList<LocationStatusList>
或可能List<LocationStatusList>
在AsQueryable()
之后致电ToList()
:
... as before ...
.ToList().AsQueryable();
请注意,ToList
调用中不需要type参数 - 它与编译器推断的相同。