-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Optimized translation for indexing of JSON primitive collections #30724
Labels
area-json
area-primitive-collections
area-query
area-sqlite
area-sqlserver
blocked
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
Milestone
Comments
This was referenced Apr 20, 2023
Also, optimize JsonScalarExpression within OpenJson/json_each, so that instead of: OpenJson(JSON_VALUE([t].[Owned], '$.Strings')) We get: OpenJson([t].[Owned], '$.Strings') (see test Column_collection_inside_json_owned_entity) |
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 25, 2023
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 25, 2023
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 26, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
roji
added a commit
to roji/efcore
that referenced
this issue
Apr 27, 2023
Mostly completes dotnet#30724, except for full type inference is blocking on dotnet#30730.
ghost
pushed a commit
that referenced
this issue
Apr 27, 2023
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Labels
area-json
area-primitive-collections
area-query
area-sqlite
area-sqlserver
blocked
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
#30426 is adding the ability to query into JSON collections. Indexing (AKA ElementAt) is supported, but currently is translated to SQL subquery syntax; while this is the right thing for relational (will work on any provider), most databases have a specific syntax for indexing into a JSON array: SQLite has the ->> operator, while with SQL Server we should be able to use CROSS APPLY with OPENJSON.
The text was updated successfully, but these errors were encountered: