var expr =
  from c in customers
  where c.Country == Countries.Italy
  select new { c.Name, c.City };
