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 row
Name
I think:
if (dc.Users.Any(u => u.Name == name)) {...}
is the best approach.