vote up 7 vote down star

If I query a table with a condition on the key field as in:

        var user = from u in dc.Users
                   where u.UserName == usn
                   select u;

I know that I will either get zero results or one result. Should I still go ahead and retrieve the results using a for-each or is there another preferred way to handle this kind of situation.

flag

Thanks for the tip on FirstOrDefault or SingleOrDefault. There's a lot to LINQ that I haven't used much of yet, and I can tell that there's a lot more out there. – Tony Peterson Oct 15 '08 at 14:33

5 Answers

vote up 13 vote down check

Try something like this:

var user = (from u in dc.Users
                   where u.UserName == usn
                   select u).FirstOrDefault();

The FirstOrDefault method returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.

link|flag
Why the downvote? – smink Oct 15 '08 at 13:27
the downvote doesn't make sense to be -- the code is perfectly cromulent. +1 to bring you back level – Danimal Oct 15 '08 at 13:28
SO ate my comment, apparently -- his original code, before the edit, would result in an exception. – Adam Lassek Oct 15 '08 at 14:07
Hum ... i only edited to fix grammar. See revision history. – smink Oct 15 '08 at 14:32
You're right, the original comment was functional. I could've sworn you used the First() method -- I must be going crazy. – Adam Lassek Oct 15 '08 at 14:58
vote up 8 vote down

Why not something like

var user = dc.Users.SingleOrDefault(u=> u.UserName==usn);
link|flag
1  
FirstOrDefault will do a TOP 1 operation for efficiency. Unfortunately SingleOrDefault does not do a TOP 2 and selects the entire set. – DamienG Oct 15 '08 at 20:44
vote up 2 vote down

I would use First() or FirstOrDefault().

The difference: on First() there will be an exception thrown if no row can be found.

link|flag
vote up 2 vote down

Also it should be noted that First/FirstOrDefault/Single/SingleOrDefault are the point of execution for a LINQ to Sql command. Since the LINQ statement has not been executed before that, it is able to affect the SQL generated (e.g., It can add a TOP 1 to the sql command)

link|flag
vote up 0 vote down

I would use the SingleOrDefault method.

var user = (from u in dc.Users
                   where u.UserName == usn
                   select u).SingleOrDefault();
link|flag

Your Answer

Get an OpenID
or
never shown

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