i want this bellow syntax write by using the lambda expression
from p in this.Context.tblUserInfos
where p.Status == 1
select new {p.UserID,p.UserName,p.tblUserType.UserType };
suppose i write
this.Context.tblUserInfos.Where(p => p.Status == 1);
How to write the above syntax by using the => operator.
Well you already have the where portion of it in there so I am assuming you only need the select: