Hi All i am busy struggling with a linq function. i am trying to achieve the equivalant output that the following SQL gives: select b.documenttypename, b.url + '/' + a.documentpath as url, a.note, a.createddate, a.userdocumentid, a.documentpath from App_UsersDocuments a join DocumentType b on a.DocumentTypeID = b.DocumentTypeID where b.isSystemType = 1 and a.UserID = @UserID my linq function is as follows: Public Function GetUserSystemDocumentsDetail(ByVal userid As Guid) As IList Dim dd = (From
Read More...