var expr =
  (from c in customers
    from o in c.Orders
    select o.Quantity
  ).Min();
