davidegironi / advanceddatagridview

A .NET WinForms DataGridView with advanced capabilities
392 stars 123 forks source link

Change FilterString construction to use IN clause for DateTime and TimeSpan #82

Closed will-scc closed 2 years ago

will-scc commented 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.

Also simplifies a number of type checks (e.g. Int32 -> int, Int64 -> long).