Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork74
Update to efcore and .net 10#1245
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Conversation
- Added translations tests for Temporal types- Applied refactorings done since EF Core 9
src/FirebirdSql.EntityFrameworkCore.Firebird.FunctionalTests/ComplianceFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
| <PackageReferenceInclude="xunit"Version="2.9.3" /> | ||
| <PackageReferenceInclude="xunit.runner.visualstudio"Version="3.1.5"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Exclude this. We can update it in later PR in all projects.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This was done as the newer version of EntityFrameworkCore tests depend on 3.1.3 (runner) and 2.9.3 (xunit.core) so had to be updated to even be able to restore the packages.
So it either has to be seperated into a seperate pr which then ahs to be merged into this one, or simply like this, or I could update it directly into this pr.
...ionalTests/Query/Associations/ComplexTableSplitting/ComplexTableSplittingBulkUpdateFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...ql.EntityFrameworkCore.Firebird.FunctionalTests/Query/Translations/MathTranslationsFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...FrameworkCore.Firebird.FunctionalTests/Query/Translations/MiscellaneousTranslationsFbTest.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...d.FunctionalTests/Query/Associations/OwnedNavigations/OwnedNavigationsSetOperationsFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...unctionalTests/Query/Associations/OwnedTableSplitting/OwnedTableSplittingProjectionFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...re.Firebird.FunctionalTests/Query/Associations/OwnedNavigations/OwnedNavigationsFbFixture.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...ebird.FunctionalTests/Query/Associations/OwnedTableSplitting/OwnedTableSplittingFbFixture.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
...dSql.EntityFrameworkCore.Firebird.FunctionalTests/Query/NorthwindSetOperationsQueryFbTest.cs OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
niekschoemaker commentedNov 28, 2025
Alright, I fixed pretty much everything now, most things which are left open, so not fixed, are done for a reason as seen in the comments. Especially all the conversion tests as explained, the casts there are really odd and not supported by firebird (bool -> numbers, and vice versa) so I disabled those with that reason. Could also re-implement those tests with a custom implementation to test the behavior we do support, but not sure if that's preferred. And the updates are left open, as those are necessary to even compile, but could be split of into a seperate PR if necessary. |
5c34b0e to22e3eddCompareniekschoemaker commentedNov 29, 2025
Test for FB3.0 seems to hang, did pass on the fork, so retrigger should fix that but can't do that myself. |
Uh oh!
There was an error while loading.Please reload this page.
A lot of JSON related and collections in columns tests have been disabled, as that is not supported.
Otherwise most tests are left enabled except for some specific ones, most of it due to outer joins and json related data.