-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Query: correlated collection optimization doesn't get applied for subqueries with AsQueryable #12195
Comments
need to decide how we approach Include for those complex scenarios. |
@smitpatel to link to Include issue. |
Based on include path interpretation we can determine if we need this kind of pattern supported. #12737 |
Moving this to 3.0 to consider as part of the overall 3.0 query plan: #12795 |
@maumar - Given that nav rewrite converts methods to queryable, does it swallow away AsQueryable? If not, should it do it? Is this issue relevant anymore? |
Currently we only apply correlated collection optimization of the subquery doesn't have any result operators. We should allow AsQueryable, for cases like this:
i.e. to apply include on a collection when the source qsre is not projected directly (#12181 has more details)
The text was updated successfully, but these errors were encountered: