-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Open
Labels
Milestone
Description
[ConditionalTheory]
[MemberData(nameof(IsAsyncData))]
public virtual Task Where_Join_Exists_Inequality(bool isAsync)
{
return AssertQuery<Customer>(
isAsync,
cs => cs.Where(c => c.CustomerID == "ALFKI" && c.Orders.Exists(o => o.OrderDate != new DateTime(2008, 10, 24))),
entryCount: 1);
}