How can I translate this SQL statement to a Linq-to-SQL approach?
- by Sergio Tapia
For example, imagine that I want to see if a user exists in my database:
Select * from Users where inputID = Users.ID
Then if that result brought 0 items, then the user exists, correct?
How can I do something like this using a pure Linq-to-SQL class?