looking for a way to create Linq-to-SQL Master-Detail with where in Detail -


i have sql:

select *  order left outer join orderdetail   (select count(*) orderdetail orderdetail.id=order.id , orderdetail.productname='book')>0 

how can implement in linq

thanks

looks sql wrong start with. looks more correct:

select *  order left outer join orderdetail on (orderdetail.id=order.id , orderdetail.productname='book') 

Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -