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
DateTime filters are truncating time.
passedValue: 2023-06-29T14:00:00.000Z&2023-06-30T14:00:00.000Z Generated Query: WHERE CONVERT(date, [t].[colName]) >= '2023-06-29T00:00:00.0000000+01:00' AND CONVERT(date, [t].[colName]) <= '2023-06-30T00:00:00.0000000+01:00'
passed Value : 2023-06-29T13:00:00.000Z Generated Query: WHERE CONVERT(date, [t].[colName]) = '2023-06-29T14:00:00.0000000+01:00'
The text was updated successfully, but these errors were encountered:
andriikaplanovskyi
No branches or pull requests
DateTime filters are truncating time.
passedValue: 2023-06-29T14:00:00.000Z&2023-06-30T14:00:00.000Z
Generated Query:
WHERE CONVERT(date, [t].[colName]) >= '2023-06-29T00:00:00.0000000+01:00' AND CONVERT(date, [t].[colName]) <= '2023-06-30T00:00:00.0000000+01:00'
passed Value : 2023-06-29T13:00:00.000Z
Generated Query:
WHERE CONVERT(date, [t].[colName]) = '2023-06-29T14:00:00.0000000+01:00'
The text was updated successfully, but these errors were encountered: