Skip to content

34.1.8

Choose a tag to compare

@SimonCropp SimonCropp released this 02 Apr 01:23
· 113 commits to main since this release
326d09f
  • 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