-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
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
SQLite: Translate more DateOnly and TimeOnly members #25103
Comments
Careful with BETWEEN and inclusivity/exclusivity. I checked this on PG, where BETWEEN is inclusive on both sides. IIRC the .NET version is exclusive on the end side, so not good. And yeah, day-wrapping isn't trivial. |
Note: implemented these in PG (npgsql/efcore.pg#2151), some tests can probably be taken from there. |
Is there an existing issues for same translations in SQLServer ? @ajcvickers |
@briangtn #24507 tracks supporting DateOnly/TimeOnly on SQL Server. Note that that's blocked on dotnet/SqlClient#1009. |
In addition to adding the corresponding TimeOnly translations listed in issue #18844, here are some additional members we could translate:
❗ Important: These translations are currently over-simplified. We need to think more about precision and day-wrapping.
See also #24506 (comment)
The text was updated successfully, but these errors were encountered: