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
The following test:
[ConditionalTheory] [MemberData(nameof(IsAsyncData))] public virtual Task TimeOnly_subtract_TimeOnly(bool async) => AssertQuery( async, ss => ss.Set<BasicTypesEntity>().Where(b => b.TimeOnly - new TimeOnly(10, 0, 0) == new TimeSpan(0, 0, 15, 50, 500)));
... generates the following SQL:
SELECT VALUE c FROM root c WHERE ((c["TimeOnly"] - "10:00:00") = "00:15:50.5000000")
We should either correct the translation or block it. Check arithmetic over other temporal types to make sure we're doing the right thing.
The text was updated successfully, but these errors were encountered:
roji
No branches or pull requests
The following test:
... generates the following SQL:
We should either correct the translation or block it. Check arithmetic over other temporal types to make sure we're doing the right thing.
The text was updated successfully, but these errors were encountered: