Document EF Core 11 FullJoin support#5374
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
AndriySvyryd
approved these changes
Jun 2, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the EF Core 11 documentation to cover new LINQ FullJoin translation support and to modernize the SQL Server hybrid (full-text + vector) search guidance by using FullJoin instead of a LeftJoin workaround.
Changes:
- Add an EF Core 11 release-notes entry demonstrating translation of the .NET 11
FullJoinLINQ operator toFULL JOIN. - Add a “Hybrid search” subsection under SQL Server full-text search improvements in EF Core 11 release notes, referencing the vector search docs.
- Update the SQL Server vector search hybrid search example to use
FullJoinand include null-aware scoring when a result appears on only one side.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| entity-framework/core/what-is-new/ef-core-11.0/whatsnew.md | Adds FullJoin documentation and introduces a SQL Server hybrid search subsection in EF Core 11 release notes. |
| entity-framework/core/providers/sql-server/vector-search.md | Updates the hybrid search example/query and corresponding SQL output to use FullJoin with null-aware scoring. |
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
EF Core 11 now translates the new .NET 11
FullJoinLINQ operator, so the EF Core 11 release notes should cover the feature and the SQL Server hybrid search guidance can use it instead of documenting a workaround.This updates the EF Core 11 whats-new page with a
FullJoinexample and adds a SQL Server hybrid search subsection under full-text search improvements. It also updates the SQL Server vector search hybrid search example to useFullJoin, including null-aware scoring for results that appear on only one side of the search.Validation:
npx --yes markdownlint-cli entity-framework/core/what-is-new/ef-core-11.0/whatsnew.md entity-framework/core/providers/sql-server/vector-search.md