Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

It's working as designed. The First() method is to be called when it's known at least one row will be returned. When this isn't the case, call FirstOrDefault().

share|improve this answer
1  
The reason there are two First variants is to get specific exceptions to make debugging easier. Instead of a vague null reference exception, you get a more specific "sequence contains no elements". – ssg Jan 10 '11 at 13:48

object.collection.where(t => t.id.Equals("2")).FirstOrDefault();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.