-
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: compilation error (dangling qsre) for queries with SelectMany whose selector is a subquery referencing outer qsre #11941
Comments
This is a regression from 2.0.2. QP in 2.0.2:
|
related to #11933 |
@smitpatel Assigned this one to you as a regression in 2.1. It is related to #11933 which @maumar has been investigating. We think that when this is fixed, then it will also fix that issue. |
@maumar to look for workarounds. |
@smitpatel / @maumar Can you point to the place (PR, issue, or commit) where we introduced this break? |
Workaround: from c in ctx.Customers
from o in ctx.Orders
where c.Id == o.CustomerId
select new { OwnerName = o.Name, CustomerName = c.Name } this is essentially what we translated to in 2.0.2 |
@ajcvickers - PR #10647 |
Repro:
QP:
The text was updated successfully, but these errors were encountered: