Need to check if a list contains an item with a property value of X.
Been using FirstOrDefault and comparing to null:
searchItems.FirstOrDefault(si => si.ID == 99) == null
Is there better way to do this?
I cannot get past syntax errors on Contains. Thanks.