这是我的 Linq 语法,我用它来实现我的实体模型
IQueryable<string> objEmployee = null;
objEmployee = from res in _db.EMPLOYEEs
where (res.EMAIL == givenInfo || res.USER_NAME == givenInfo)
select res.EMAIL;
如何选择多列?就像我想选择 res.ID 一样。我怎么才能得到这些呢?我认为我可以质疑是行不通的。 这个叫做 Linq to SQL,对吧?