My table has the following columns:
User (UserID, GroupID, userName, userType, ...)
I need to do this:
SELECT GroupID
FROM Users
WHERE userID = @userID AND username = @username and usertype = @usertype.
I have my DataContext ready to go, guidance on my LINQ query would be great!