Consulta de Linq para verificar si existe el registro

if (dc.Users.Any(u => u.Name == name)) 
{
	// Do something here
}
Code with bulbul