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

Query: include not applied on a subquery with navigation that is exposed by groupjoin's grouping #13083

Closed
maumar opened this issue Aug 22, 2018 · 0 comments
Labels
closed-out-of-scope This is not something that will be fixed/implemented and the issue is closed.

Comments

@maumar
Copy link
Contributor

maumar commented Aug 22, 2018

query:

(from l1 in l1s
                     join l2 in (from t in l1s
                                 where t.OneToOne_Required_PK1 != null
                                 select t.OneToOne_Required_PK1).Include(e => e.OneToOne_Required_PK2)
                     on (Nullable<int>)l1.Id equals l2.Level1_Optional_Id into grouping
                     orderby l1.Id
                     select new
                     {
                         l1,
                         grouping
                     })

we are unable to associate query source in the [grouping] with the query source that is stored in the Include query annotation.

@maumar maumar closed this as completed Aug 22, 2018
@maumar maumar reopened this Aug 22, 2018
@maumar maumar closed this as completed Aug 23, 2018
@ajcvickers ajcvickers added the closed-out-of-scope This is not something that will be fixed/implemented and the issue is closed. label Mar 10, 2022
@ajcvickers ajcvickers reopened this Oct 16, 2022
@ajcvickers ajcvickers closed this as not planned Won't fix, can't repro, duplicate, stale Oct 16, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
closed-out-of-scope This is not something that will be fixed/implemented and the issue is closed.
Projects
None yet
Development

No branches or pull requests

2 participants