-
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
Integrate precompiled query generation into the build process #33103
Labels
area-aot
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
Milestone
Comments
AndriySvyryd
added a commit
that referenced
this issue
May 17, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 18, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 21, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 21, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 22, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 23, 2024
AndriySvyryd
added
the
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
label
May 24, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 24, 2024
AndriySvyryd
added a commit
that referenced
this issue
May 31, 2024
AndriySvyryd
added a commit
that referenced
this issue
Jun 5, 2024
AndriySvyryd
added a commit
that referenced
this issue
Jun 6, 2024
AndriySvyryd
added a commit
that referenced
this issue
Jun 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-aot
area-query
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
type-enhancement
The precompiled query feature (#25009) statically analyzes user code, and generates interceptors for static LINQ queries; this is necessary for NativeAOT. This cannot happen in a Roslyn source generator (as is usual), since query processing requires the EF model, which cannot be built/accessed in the Roslyn context.
As a result, we are planning to perform this process via msbuild integration, most likely as part of publishing (this is already where the very lengthy NativeAOT compilation takes place, etc.).
The text was updated successfully, but these errors were encountered: