i want this bellow syntax write by useing the lamda 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.