Skip to content

Fix correctness and crash issues - #228

Open
Thorium wants to merge 1 commit into
scottksmith95:masterfrom
Thorium:minor-issue-fixes
Open

Fix correctness and crash issues#228
Thorium wants to merge 1 commit into
scottksmith95:masterfrom
Thorium:minor-issue-fixes

Conversation

@Thorium

@Thorium Thorium commented Jul 24, 2026

Copy link
Copy Markdown
Collaborator
  • ExpressionStarter.Not() on an unstarted predicate now negates the DefaultExpression instead of always starting with 'x => false', so PredicateBuilder.New(false).Not() correctly matches everything.

  • A custom query optimizer passed to AsExpandable() is no longer silently dropped: it now survives query composition (CreateQuery/Include re-wrap with the same optimizer), is applied on the non-generic CreateQuery and EF Core 2 async streaming paths, and an explicitly passed optimizer rewraps an already-wrapped query instead of being ignored.

  • Guard the reflection lookup of EntityQueryProvider._queryCompiler so a future EF Core rename degrades gracefully instead of throwing NRE.

  • EvaluateTarget no longer throws for user-defined Compile() methods declared on non-generic types (GetGenericTypeDefinition guard).

  • EF Core 2 ExecuteAsync now throws a descriptive InvalidOperationException when the inner provider is not async, instead of NullReferenceException.

Adds regression tests covering each fix; all verified to fail against the previous implementation.

- ExpressionStarter<T>.Not() on an unstarted predicate now negates the
  DefaultExpression instead of always starting with 'x => false', so
  PredicateBuilder.New<T>(false).Not() correctly matches everything.

- A custom query optimizer passed to AsExpandable() is no longer silently
  dropped: it now survives query composition (CreateQuery/Include re-wrap
  with the same optimizer), is applied on the non-generic CreateQuery and
  EF Core 2 async streaming paths, and an explicitly passed optimizer
  rewraps an already-wrapped query instead of being ignored.

- Guard the reflection lookup of EntityQueryProvider._queryCompiler so a
  future EF Core rename degrades gracefully instead of throwing NRE.

- EvaluateTarget no longer throws for user-defined Compile() methods
  declared on non-generic types (GetGenericTypeDefinition guard).

- EF Core 2 ExecuteAsync now throws a descriptive InvalidOperationException
  when the inner provider is not async, instead of NullReferenceException.

Adds regression tests covering each fix; all verified to fail against the
previous implementation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant