Entity Framework Core Tips: Detect a Select without Where Clause Using DbComand Interceptor
What are Entity Framework Core Interceptors Entity Framework Core (EF Core) interceptors enable interception, modification, and/or suppression of EF Core operations. This includes low-level database operations such as executing a command, as well as higher-level operations, such as calls to SaveChanges. What is a DbCommandInterceptor An IDbCommandInterceptor can be used to capture or modify SQL before …