我收到以下错误实例参数:
无法从“System.Collections.Generic.IEnumerable”转换为“System.Linq.IQueryable”
那么问题是变量 Assay.assayKey 在表中可能为空,所以我不能有 intassayKey 而不是 int?化验键。我被这件事难住了,有人可以帮忙吗?谢谢
Search Entry
{
int id {get;set;}
int? key {get;set;}
int[] selectedKeys {get;set;}
}
Assay
{
int id {get;set;}
int? AssayKey { get; set; }
}
CollObject
{
Ienumerable<int> keys {get;set;}
}
在我的控制器操作方法中,正在执行以下操作来检索 id 数组:
SearchEntry.selectedKeys = (from assays in db.assay
where CollObject.Keys.Contains(assay.AssayKey)
select assays.id).toArray();
好吧,我找到了解决方案。由于 Assay Key 是一个可为空的 int,我只需要做这样的事情
.Contains(assays.AssayKey ??0)