var lambda=_db.Accounts.Join(_db.AccSubTypes,ac=>ac.Invoice,ast=>ast.Astid,(ac,ast)=>new {ac,ast}) .Join(_db.AccSubTypes,bc=>bc.ac.Schedule,bst=>bst.Astid,(bc,bst)=>new{bc,bst}) .Join(_db.AccSubTypes,cc=>cc.bc.ac.TaxStatus,cst=>cst.Astid,(cc,cst)=>new{cc,cst}) .Join(_db.AccSubTypes,dc=>dc.cc.bc.ac.Receipt,dst=>dst.Astid,(dc,dst)=>new{dc,dst}) .Join(_db.AccSubTypes,ec=>ec.dc.cc.bc.ac.FullOrNot,est=>est.Astid,(ec,est)=>new {ec,est}) .Join(_db.AccSubTypes,fc=>fc.ec.dc.cc.bc.ac.Effective,fst=>fst.Astid,(fc,fst)=>new {fc,fst}) .Select(av=>new AccountView(){Invoice=av.fc.ec.dc.cc.bc.ast.Name,Schedule=av.fc.ec.dc.cc.bst.Name,TaxStatus=av.fc.ec.dc.cst.Name,Receipt=av.fc.ec.dst.Name,FullOrNot=av.fc.est.Name,Effective=av.fst.Name});