Added an extensions entry for EntityFrameworkCore.Projectables #3283
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
EntityFrameworkCore.Projectables enables a way to use normal properties and methods within your linq query while having it still generate proper sql. Similar to Expressionify, it uses a code generator to create companion expressions of any property/method that is marked with an attribute. I've been using this technique for a while now and have recently published this library as a generic implementation. It has quite a few differences from Expressionify as it first allows Expanding on much more than just extension methods as well as it integrates with EFCore and actually improves performance for query compilation (currently exposed in the Benchmark but I'll add a blog post on this topic soon too).
It would be great if this can be listed on the Extensions page docs. If there are concerns that this project is still in 'preview' (currently v0.4.0). I expect a proper release within the next couple of days.