Closed zspitz closed 3 years ago
This expression:
Expression<Func<Person, bool>> expr = p => p.LastName[0] == 'A' || p.LastName[0] == 'B';
returns this in the Dynamic LINQ writer/visitor:
LastName[0] == 65 || LastName[0] == 66
It should return (after #74 ):
LastName[0] in ('A', 'B')
This expression:
returns this in the Dynamic LINQ writer/visitor:
It should return (after #74 ):