var expr =
  Enumerable.Repeat( ( from c in customers
                       select c.Name), 2)
  .SelectMany(x => x);
