Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 574 Bytes

README.md

File metadata and controls

23 lines (12 loc) · 574 Bytes

EF7Interceptors

Three EF Core interceptor examples from the .NET Blog, plus two more.

EntityCaching

Caches instances of read-only entities so the same instance is always used across different DbContext instances

InjectLogger

Injects an ILogger into entity instances when they are queried

OptimisticConcurrencyInterception

Supprresses DbUpdateConcurrencyException for deletes

QueryInterception

Automatically adds seconary ordering by primary keys

SimpleMaterization

Sets a property on every entity when it is returned from the database