Entity Framework Create Audit Table / History Table?

I want to create a history / audit table for a specific object. This is a complex object with many child tables, and we use the Repository Patter for our application. I looked at redefining DbContext SaveChanges ?. Is it good practice to use this specifically for a single object ?. What are my other options?

Thanks in advance.

+4
source share
1 answer

I am working on a library that can help.

Audit.EntityFramework , SaveChanges() , .

+4

Source: https://habr.com/ru/post/1652250/


All Articles