Open jarrettmeyer opened 12 years ago
.Count() > 0 will enumerate the entire collection to determine count, then test that count > 0. .Any() will return true as soon as the first record is found.
.Count() > 0 will enumerate the entire collection to determine count, then test that count > 0. .Any() will return true as soon as the first record is found.