I am using a linq query as below.
object.collection.where(t => t.id.Equals("2")).First();
I am getting the error "Sequence contains no elements" Why does the result throws error when the result contains no elements. Should not it return null when no results are found ?. In sql that is the functionality.

