这是我在实体模型中使用的Linq语法
IQueryable<string> objEmployee = null;
objEmployee = from res in _db.EMPLOYEEs
where (res.EMAIL == givenInfo || res.USER_NAME == givenInfo)
select res.EMAIL;
如何选择多列?就像我想选择res.ID一样。我怎么能收到这些呢?我认为IQueryable无法正常工作。这就是所谓的Linq to SQL,对吗?