You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No. The interceptor hooks into EF Core's query compilation pipeline before any provider-specific translation, so it works with SQL Server, PostgreSQL, SQLite, Cosmos DB, and any other EF Core provider.
71
71
72
72
#### Are there performance implications?
73
-
Two compatibility modes are available: **Full** (default) expands every query before handing it to EF Core; **Limited** expands once and caches the result. Limited mode often outperforms plain EF Core on repeated queries. See the [Compatibility Mode docs](https://projectables.github.io/reference/compatibility-mode).
73
+
Two compatibility modes are available: **Full** (default) expands every query before handing it to EF Core; **Limited** expands once and caches the result. Limited mode often outperforms plain EF Core on repeated queries. See the [Compatibility Mode docs](https://efnext.github.io/reference/compatibility-mode).
74
74
75
75
#### Can I compose projectables?
76
76
Yes — a `[Projectable]` member can call other `[Projectable]` members. They are recursively inlined into the final SQL.
0 commit comments