bool result =
  (from c in customers
    from o in c.Orders
    select o)
  .All(o => o.Quantity > 0);

result = Enumerable.Empty<Order>().All(o => o.Quantity > 0);
