Skip to content
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

[release/7.0] Fix to #29355 - FromSqlRaw throws Exception when querying all objects that contain a certain string property in a json array column #29366

Merged
merged 1 commit into from
Oct 18, 2022

Commits on Oct 15, 2022

  1. Fix to #29355 - FromSqlRaw throws Exception when querying all objects…

    … that contain a certain string property in a json array column
    
    Problem was that were not creating navigation bindings for JSON entities in the SelectExpression ctor which takes TableExpressionBase as argument. This would cause error in SharedTypeEntityExpandingExpressionVisitor which depends on those bindings to be present for entities mapped to JSON.
    
    Fix is to use the same logic we use in the "main" SelectExpression ctor.
    
    Fixes #29355
    maumar committed Oct 15, 2022
    Configuration menu
    Copy the full SHA
    36f0e53 View commit details
    Browse the repository at this point in the history