How can i use this query with linq. EmployeeIDs is another table.
select *
from Employees where EmployeeID
in (select ID from EmployeeIDs where ID between 3 and 7)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Where db is the linq data context
or you can also do it like this:
or you can also do it like this: