-
Notifications
You must be signed in to change notification settings - Fork 20
Adding custom IEvaluatableExpressionFilter
Pawel Gerr edited this page Feb 9, 2026
·
2 revisions
Use the extension method AddEvaluatableExpressionFilterPlugin<T> to add a custom implementation of IEvaluatableExpressionFilterPlugin.
services
.AddDbContext<DemoDbContext>(builder => builder
//.UseSqlite("...")
.UseSqlServer("...")
//.UseNpgsql("...")
.AddEvaluatableExpressionFilterPlugin<MyPlugin>()- Collection Parameters (temp-tables light)
- Window Functions Support (RowNumber, Sum, Average, Min, Max)
- Nested (virtual) Transactions
- Table Hints
- Queries across multiple databases
- Changing default schema at runtime
- If-Exists / If-Not-Exists checks in migrations
- Isolation of tests [DEPRECATED]