This is my Linq Syntax which I am using to my entity model
IQueryable objEmployee = null; objEmployee = from res in _db.EMPLOYEEs
You can use anonymous types for example:
var empData = from res in _db.EMPLOYEEs where res.EMAIL == givenInfo || res.USER_NAME == givenInfo select new { res.EMAIL, res.USER_NAME };