Skip to content

Adding custom IEvaluatableExpressionFilter

Pawel Gerr edited this page Feb 9, 2026 · 2 revisions

Required Nuget Package: Thinktecture.EntityFrameworkCore.Relational

Usage

Use the extension method AddEvaluatableExpressionFilterPlugin<T> to add a custom implementation of IEvaluatableExpressionFilterPlugin.

services
   .AddDbContext<DemoDbContext>(builder => builder
                                           //.UseSqlite("...")
                                           .UseSqlServer("...")
                                           //.UseNpgsql("...")
                                           .AddEvaluatableExpressionFilterPlugin<MyPlugin>()

Clone this wiki locally