What is the Any()
doing in the following query?
context.Customers
.Include("InternetSales")
.Where(c => c.InternetSales.Any())
.Take(100);
How would you read out this query in plain English? For example, would the following be accurate?
"Get customers with their associated 100 internet sales."
(I know there is no "get" in the code, but you get what I mean.)