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
[ConditionalFact]publicvirtualvoidWhere_logical_or(){AssertQuery<Customer>(
cs =>cs.Where(c =>c.CustomerID=="ALFKI"||c.CustomerID=="ANATR"),entryCount:2);AssertSql(@"SELECT c AS queryFROM root cWHERE ((c[""Discriminator""] = ""Customer"") AND ((c[""CustomerID""] = ""ALFKI"") OR (c[""CustomerID""] = ""ANATR"")))");}
Can use IN operator to generate better SQL.
The text was updated successfully, but these errors were encountered:
Can use IN operator to generate better SQL.
The text was updated successfully, but these errors were encountered: