I\'m learning Linq to SQL and I\'m having trouble grasping it. I\'m trying to simply return a single (boolean) value in C# with a Linq query.
I want to see if the o
If you expect just one result just use Single or SingleOrDefault to get the bool. If you want the first result you can use First or FirstOrDefault.