我正在尝试使用查询关键字将linq查询转换为方法语法。 我的最终目标是每次在查询中看到 Where 子句时,都能在运行时应用附加限制。我总共应用了14个不同的参数。有些是相互排斥的,有些是包容性的。
以下是起始查询:
query = from p in context.Person
where p.Firstname.ToUpper().StartsWith(firstName.ToUpper())
join v in context.Visit on p.Id equals v.PersonId
where !v.AccessionNumber.StartsWith(RISConst.PM_PREFIX)
join f in context.Finding on v.Id equals f.VisitId
join c in context.Consultation on f.Id equals c.FindingId
where c.StudyId.ToUpper().CompareTo(studyId.ToUpper()) == 0
select v;
使用Jon Skeet的excellent blog post我已经走得那么远了:
query = context.Person.Where(p => p.Firstname.ToUpper().StartsWith(firstName.ToUpper()))
.Join(context.Visit, p => p.Id, v => v.Id, (p, v) => new { p, v })
.Where(z => z.v.AccessionNumber.StartsWith(RISConst.PM_PREFIX))
.Select(z => z.v)
.Join(context.Finding, v => v.Id, f => f.VisitId, (v, f) => new { v, f })
.Select(t => t.f)
.Join(context.Consultation, f => f.Id, c => c.FindingId, (f, c) => new { f, c })
.Where( u => u.c.StudyId.ToUpper().CompareTo(studyId.ToUpper()) == 0)
.Select(????);
现在我被卡住了,因为我需要返回访问次数。我怎么能这样做?
任何帮助表示赞赏。
答案 0 :(得分:2)
我认为您在此选择语句中遗失了Visists
:.Select(t => t.f)
。删除它并在下一个语句中使用整个匿名对象。
.Join(context.Consultation, x => x.f.Id, c => c.FindingId, (x, c) => new { x.v, c })
.Where( u => u.c.StudyId.ToUpper().CompareTo(studyId.ToUpper()) == 0)
.Select(u => u.v);