34.1.8
- Handle Include on projected queries in IncludeAppender (#1228) — EF Core does not support Include on non-entity
queries (e.g., after a Select projection). The IncludeAppender now detects projected queries and skips applying
Include, catching InvalidOperationException as a fallback. This prevents runtime errors when combining Select
projections with navigation property filters.
Other Changes
- Minor improvements to SelectExpressionBuilder
- Added integration tests for select projections with and without navigation filters