We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I'm trying to filter by Date column. Currently I need to manually specify Date type:
Date
new ClickHouseDbParameter { ParameterName = paramName, ClickHouseType = "Date", Value = value };
If I don't specify the type manually then TypeConverter choose DateTime type for DateTime and DateTimeOffset values.
TypeConverter
DateTime
DateTimeOffset
What do you think about supporting DateOnly values and automatically choose Date type for them?
The text was updated successfully, but these errors were encountered:
Support for DateOnly #276
2219b4c
Support for DateOnly #276 (#277)
dc43db0
Hi. Thank you for your report. This is a trivial change, added for next release
Sorry, something went wrong.
Better implementation: convert to DateOnly both ways #276
b96ddea
Thank you! Lookng forward for the new release :)
No branches or pull requests
Hi!
I'm trying to filter by
Date
column. Currently I need to manually specifyDate
type:If I don't specify the type manually then
TypeConverter
chooseDateTime
type forDateTime
andDateTimeOffset
values.What do you think about supporting DateOnly values and automatically choose
Date
type for them?The text was updated successfully, but these errors were encountered: