我有以下linq查询:
public static int GetContributions(PERSON person, DateTime startDate, DateTime endDate)
{
using (var db = new TestEntities())
{
var creditsSum = (from u in db.PERSON_SOCIAL_INSURANCE_CONTRIBUTIONS
where u.StartDate >= startDate
where u.EndDate <= endDate
where (u.PersonId == person.Id)
select (int?)u.NumOfContributions).Sum() ?? 0;
return creditsSum;
}
}
我想创建一个类似的方法,它返回不在提供的开始日期和结束日期之间的贡献数量。所以基本上它返回所有不在startDate和endDate值之间的条目。
任何帮助?
答案 0 :(得分:1)
和你所有的条件在一起,在它们周围加上括号,否定。
var creditsSum = (from u in db.PERSON_SOCIAL_INSURANCE_CONTRIBUTIONS
where !(u.StartDate >= startDate
&& u.EndDate <= endDate)
where (u.PersonId == person.Id)
select (int?)u.NumOfContributions).Sum() ?? 0;
答案 1 :(得分:0)
然后改变你的条件:
var creditsSum = (from u in db.PERSON_SOCIAL_INSURANCE_CONTRIBUTIONS
where (u.StartDate > endDate || u.EndDate < startDate) &&
u.PersonId == person.Id
select (int?)u.NumOfContributions).Sum() ?? 0;
你不需要那么多where语句,只需使用AND运算符。
答案 2 :(得分:0)
您的Where
子句可能如下所示:
b.PERSON_SOCIAL_INSURANCE_CONTRIBUTIONS
.Where(
(c => c.StartDate > endDate || c.EndDate < startDate)
&& u.PersonId == person.Id
)