0
大家好任何人可以幫我這個SQL我thnink我最大的問題來自於SQL中不存在語句LINQ複雜的查詢轉換爲LINQ沒有EXISTS
select count(distinct(GroupID)) from ParticipantModulequestionnaire pmq
inner join ParticipantGroupMember pgm on pmq.participantid = pgm.ParticipantID
where pmq.moduleid = 46 and not exists
(select unf.participantid from ParticipantModuleQuestionnaire unf where unf.ParticipantID = pmq.ParticipantID
and unf.ModuleID = 46
and isnull(unf.completedflag,0) <> 0)
轉換爲LINQ謝謝大家
考慮用等效的'!myEnumerable.Any(...)'替換'myEnumerable.Count(...)== 0'。 –
啊,很好的電話 - 你是一個真正的生活resharper :) – eouw0o83hf
謝謝你的幫助! –