I am not interested in the contents of a row, I just want to know if a row exists. The Name
column is a primary key, so there will either be 0 or 1 matching rows. Currently, I am using:
if ((from u in dc.Users where u.Name == name select u).Count() > 0)
// row exists
else
// row doesn't exist
While the above works, it does a lot of unnecessary work by selecting all the contents of the row (if it exists). Does the following create a faster query:
if (dc.Users.Where(u => u.Name == name).Any())
...or is there an even faster query?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…