Say I have a class Customer which has a property FirstName. Then I have a List.
Customer
FirstName
List
Can LINQ be used to find if th
Another possibility
if (list.Count(customer => customer.Firstname == "John") > 0) { //bla }