How can I select multiple columns?
Selecting multiple columns in Linq Sunil Singh 1768 13 Dec 2017 objuser = from res in _db.users where (res.EMAIL == givenInfo || res.USER_NAME == givenInfo) select res.EMAIL; How can I select multiple columns?
You can use like this
Hope it helps you..