Closed will-scc closed 2 years ago
Changes the constructed FilterString for DateTime and TimeSpan type columns to create with IN clause rather than a series of LIKEs. Resolves Issue #81.
IN
LIKE
Also simplifies a number of type checks (e.g. Int32 -> int, Int64 -> long).
Int32
int
Int64
long
Changes the constructed FilterString for DateTime and TimeSpan type columns to create with
IN
clause rather than a series ofLIKE
s. Resolves Issue #81.Also simplifies a number of type checks (e.g.
Int32
->int
,Int64
->long
).