You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, .Any() is supported on enumerables within the query - e.g. .Where(customer => customer.Orders.Any(o => o == order)). It would be useful to be able to use .Any() on enumerables which have been declared in the calling scope - e.g. .Where(customer => ordersOutsideQuery.Any(o => o.Customer.Name.StartsWith(customer.Name)))
The text was updated successfully, but these errors were encountered:
Currently,
.Any()
is supported on enumerables within the query - e.g..Where(customer => customer.Orders.Any(o => o == order))
. It would be useful to be able to use.Any()
on enumerables which have been declared in the calling scope - e.g..Where(customer => ordersOutsideQuery.Any(o => o.Customer.Name.StartsWith(customer.Name)))
The text was updated successfully, but these errors were encountered: