select c.GroupName , c.FormGroup from Category c, Roles r where r.EmployeeNumber = 931 and (c.FormGroup = r.RoleId ) or ( r.GroupView = c.GroupView )
Someone provide example how to convert this to Linq to Sql
Thanks in advance
select c.GroupName , c.FormGroup from Category c, Roles r where r.EmployeeNumber = 931 and (c.FormGroup = r.RoleId ) or ( r.GroupView = c.GroupView )
Someone provide example how to convert this to Linq to Sql
Thanks in advance