SingleOrDefault() Vs. FirstOrDefault() in LINQ Query
Single() / SingleOrDefault()
First () / FirstOrDefault()
Single() - There is exactly 1 result, an exception is thrown if no result is returned or more than one result.
SingleOrDefault() – Same as Single(), but it can handle the null value.
First() - There is at least one result, an exception is thrown if no result...
SingleOrDefault Vs FirstOrDefault
Continue Reading →