ProgramId
我有一个 Linq to Entites 查询,只有在等于 URL 传入的参数时才需要运行:
var PatientFollowUpResult = surveyResponseRepository.Query.Count(r => r.PatientFollowUp);
例如,我如何计算所有的r.PatientFollowUp
for r.ProgramId = 1
?
ProgramId
我有一个 Linq to Entites 查询,只有在等于 URL 传入的参数时才需要运行:
var PatientFollowUpResult = surveyResponseRepository.Query.Count(r => r.PatientFollowUp);
例如,我如何计算所有的r.PatientFollowUp
for r.ProgramId = 1
?