2012-02-02 5 views
0

にSQL文を翻訳するためにはどのように参加して、linq..Followingにサブクエリが、私は..PleaseのようなLINQの

Select product.Name from product where Product.Id in(select ProductId from 
SaleDetail s join Sale s1 on s.SaleId=s1.Id where s.SaleId in(select Id from Sale where sale.CustomerId=17264)) 

答えて

2

何かを助ける変換しようとしているSQL文であるとのSQL文を翻訳する方法がわかりませんこれは(dbはlinqのデータコンテキストです):

var result= (
     from p in db.Product 
     where 
      (
       from s in db.SaleDetail 
       join se in db.Sale 
        on s.SaleId equals se.Id 
       where 
        (
         from s2 in db.Sale 
         where s2.CustomerId==17264 
         select s2.Id 
        ).Contains(s.SaleId) 
       select s.ProductId 
      ).Contains(p.Id) 
     select new 
     { 
      p.Name 
     } 
    );