var customersDictionary =
  customers
  .ToDictionary(c => c.Name,
                c => new {c.Name, c.City});
