我目前正在运行以下查询:
var results = from c in _context.Cs
join a in _context.Ca on c.Id equals a.CId
where c.Status == "A"
where c.CtId == ctId
where c.FY == fYear
where (a.PMId == lUserId || a.TLId == lInUserId)
select new { c.Id, c.T, c.C, c.S } into x
group x by new {x.Id, x.T, x.C, x.S} into g
orderby g.Key.T, g.Key.C, g.Key.S
select new { Id = g.Key.Id, T = g.Key.T, C = g.Key.C, S = g.Key.S}
现在,如果lUserId!= 0,我需要使where (a.PMId == lUserId || a.TLId == lInUserId)
行成为条件(如果不是0,则使用它,如果为0,则忽略它)。
通常,我会声明变量results
然后在if语句中设置它,但我不知道如何定义这个数据结构。它显示为定义为:
IQueryble<'a>
'a is new { int Id, string T, string C, string S}
最好的方法是什么?
答案 0 :(得分:1)
您可以在查询中使用||
运算符,因此如果第一个条件为真,则不会计算第二个,如果first为false,则不会计算0秒:
where lUserId ==0 || (a.PMId == lUserId || a.TLId == lInUserId)
答案 1 :(得分:0)
我的理解是:
a.PMId == lUserId || a.TLId == lInUserId
UserId != 0
lUserId ==0
忽略该条件
如果我正确理解了要求,那么&&
将是您必须在此处使用的运算符。因为如果第一个条件为假(即UserId == 0
),它将跳过检查第二个条件。我认为你正在寻找这个:
where (UserId != 0 && a.PMId == lUserId || a.TLId == lInUserId)