I want to check if any of the items in a list has a field set to true
at the moment I do this:
bool isPaid = visit.Referrals.Exists(delegate(AReferral r)
{
return r.IsPaidVisit;
});
How can I do this using Linq might be trivial to some but can't figure if now.