我的linq查询存在很大问题
var t = from tl in _GxEntities.T_L
join td in _GxEntities.T_D on (int)tl.fld_rdRequestfk equals td.fld_rqID_pk
join tpd in _GxEntities.T_P_D on (int)td.fld_rqID_pk equals tpd.fld_pdRequest_fk
where tpd.fld_pdda == null
&& tpd.fld_pdSU_fk == tl.fld_rdSU_fk
&& td.fld_rqstatus != 1
&& tl.fld_rcid != null
&& tl.loc_id == UsrProfilService.loc_id
&& tl.fld_rcid.Any(x=> tblRvGxFr.Select(c=>c.Nte).Contains(x.ToString()))
group tl by new
{
tl.fld_rcid,
tl.fld_rdSU_fk,
tl.fld_rdtRequested_Q,
tl.loc_id
} into q
select new RVSyntheseDetailModel()
{
RC_ID = q.Key.fld_rcid,
SU = (int)q.Key.fld_rdSU_fk,
Ts = (int)q.Sum(k => k.fld_rdtRequested_Q),
LOC_ID = (short)q.Key.loc_id
};
return t.ToList();
如果我发表评论&& tl.fld_rcid.Any(x=> tblRvGxFr.Select(c=>c.Nte).Contains(x.ToString()))
这部分我没有任何问题。 tblRvGxFr
来自其他实体,如下所示:
var dateLimit = DateTime.Now.Date.AddMonths(-1);
var tblRtvGrxFr = from tgx in _FtEntities.TL_RV_FR_GX
where tgx.RV_D_LIM_RET > dateLimit && tgx.RV_N_IDT_DAP != null && tgx.RV_LOC_ID == SqlFunctions.StringConvert((double)UsrProfilService.loc_id)
select new RVSyntheseRrModel()
{
Nte = tgx.RV_ETET,
Tr = tgx.RV_TR,
Filiere = tgx.RV_T_PRD,
Lib_art = tgx.RV_L_ART,
SU = tgx.RV_N_IDT_DAP,
Qte_demand = (int?)tgx.RT_Q_DEM_RET ?? 0,
Ord = 0,
Tcs = 0,
AfA = 0,
PrA = 0,
Exped = 0,
Loc_Id = tgx.RV_LOC_ID,
Reason = tgx.RV_REASON
};
你能帮帮我吗?为什么我会收到此错误" DbExpressionBinding需要带有ResultType集合的输入表达式。参数名称:输入"?
如果我将此条件更改为:&& tblRvGxFr.Select(i => i.Nte).Contains(tl.fld_rcid)我发现此错误:无法处理类型' GX.ViewModels.RVSyntheseRrModel []',因为它没有已知的值到图层的映射。
答案 0 :(得分:5)
通常你会使用类似这样的东西
&& tblRvGxFr.Any(c => c.Nte.Contains(tl.fld_rcid))
但LINQ to Entities不支持涉及不同DbContext
的查询。所以你需要将Nte
抓取到本地列表/数组
var nteList = tblRvGxFr.Select(c => c.Nte).ToList();
然后再使用它:
&& nteList.Any(nte => nte.Contains(tl.fld_rcid))
希望Nte
列表不大,否则SQL查询会非常大且效率低下。但AFAIK没有其他多上下文解决方案。