bool result =
  (from c in customers
    from o in c.Orders
    select o)
  .Any(o => o.IdProduct == 1);

result = Enumerable.Empty<Order>().Any();
