LINQ to SQL Left outer join VB

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
for the life of me I cannot get this to work with LINQ to SQL vb.net
If you can provide me with a greate linq vb.net refrence or something it would be fantastic.
SELECT a.FLD_ID, a.FLD_SUBJECT, a.FLD_GROUP, a.FLD_SUBMITTED, a.FLD_LASTACTION, a.FLD_CLOSED<br/>
FROM TBL_WSS_TT_TICKET a LEFT OUTER JOIN<br/>
TBL_WSS_TT_ALLOW b ON a.FLD_ID = b.FLD_TICKET_REF<br/>
WHERE (a.FLD_USER = user) OR (b.FLD_USER = user)

View the full article
 
Back
Top