我想知道如何在Linq中編寫下列SQL語句。我嘗試過,但沒有運氣。如何在Linq中編寫SQL查詢語句SQL
/*Variable*/
topicId = '4a31c2ee-48af-4b87-b300-112acb822ad0'
select * from Contents c
left join ContentToTopicRelations ctr on ctr.ContentId = c.ContentId and ctr.TopicId = topidId
where ctr.ContentId is null
基本上,我想獲得的所有不在ContentToTopicRelations表特定topicId內容。
太好了!非常感謝。 – 2011-01-25 19:19:43