I have a handler and I'm trying to execute LINQ operations. However, I canโt. Is it possible to do this in .ASHX files?
using (UserDataContext userDataContext = new UserDataContext)
{
User user = userDataContext.Users.Single -- Does not show up as an option in intellisense.
}
thank
source
share