Help with Subsonic3 LINQ query
- by Saif Khan
I have the following subsonic entities
TInvoiceHeader
TAccountAssociation
How can I achieve the following in LINQ
SELECT * from TInvoiceHeader
WHERE custid IN
(SELECT custid FROM TAccountAssociation
WHERE username = 'a')
I need to bind the results to a GridView.