switch linq syntax
- by scrat789
var folders = from r in this.bdd.Rights
join f in this.bdd.Folders on r.RightFolderId equals f.FolderId
join rs in this.bdd.RightSpecs on r.RightSpecId equals rs.SpecIdRight
where r.RightUserId == userId
where rs.SpecRead == true
where rs.SpecWrite == true
select f;
How transform this linq query in the other syntax?
var folders = this.bdd.Rights.Where(r => r.....