-
Notifications
You must be signed in to change notification settings - Fork 12
Home
Jon P Smith edited this page Sep 14, 2020
·
5 revisions
The EfCore.GenericEventRunner library uses messages (called events) to past information of changes in your entity classes (i.e. the classes that EF Core maps to a database) to business code (called event handlers) that are run when you call SaveChanges or SaveChangesAsync. This allows you to trigger specific business code when say a property in your entity class is changed.
Read the Introduction/Overview pages in the sidebar, or the longer articles for more general information.
The Setup: ... parts show you how to set up EfCore.GenericEventRunner to work with your application.