ProgramIdURLによって渡されたパラメーターと等しい場合にのみ実行する必要があるLinqtoEntitesクエリがあります。
var PatientFollowUpResult = surveyResponseRepository.Query.Count(r => r.PatientFollowUp);
たとえば、すべてをカウントするにはどうすればよいr.PatientFollowUpですr.ProgramId = 1か?
ProgramIdURLによって渡されたパラメーターと等しい場合にのみ実行する必要があるLinqtoEntitesクエリがあります。
var PatientFollowUpResult = surveyResponseRepository.Query.Count(r => r.PatientFollowUp);
たとえば、すべてをカウントするにはどうすればよいr.PatientFollowUpですr.ProgramId = 1か?