-
Notifications
You must be signed in to change notification settings - Fork 17
10.0.0 preview 6 #80
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
10.0.0 preview 6 #80
Conversation
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.
Pull Request Overview
This PR upgrades the project to Entity Framework Core 10.0.0 preview 6, updating dependencies and migrating to a new solution file format. The update includes upgrading test framework dependencies, enhancing query filter functionality, and migrating from a traditional .sln to a newer .slnx format.
Key changes:
- Upgraded EF Core from preview 3 to preview 6 and updated related dependencies
- Added selective query filter ignoring functionality with named filters
- Migrated from traditional Visual Studio solution file to XML-based solution format
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Directory.Build.props | Updated EF Core version to preview 6 and CommonVersion to 1.0.80 |
| test/WeihanLi.EntityFramework.Test/WeihanLi.EntityFramework.Test.csproj | Updated test SDK and xunit versions |
| src/WeihanLi.EntityFramework/EFRepositoryQueryBuilder.cs | Added selective query filter ignoring with named filters and removed unused imports |
| samples/WeihanLi.EntityFramework.Sample/TestDbContext.cs | Added named query filters configuration |
| samples/WeihanLi.EntityFramework.Sample/Program.cs | Updated sample code to test new query filter functionality |
| build/build.cs | Changed solution file reference from .sln to .slnx |
| WeihanLi.EntityFramework.slnx | Added new XML-based solution file |
| WeihanLi.EntityFramework.sln | Removed traditional solution file |
Comments suppressed due to low confidence (1)
Directory.Build.props:10
- The Entity Framework Core version 10.0.0-preview.6.25358.103 appears to be a preview version that may not exist or be publicly available. Please verify this version exists in the official NuGet repository.
<EFVersion>10.0.0-preview.6.25358.103</EFVersion>
No description provided.