0
digitalcontrol created
Dear, Is it posible to configure Asp.Net Zero in order to track changes and get a log of before/after values?
2 Answer(s)
-
0
Hi @digitalcontrol,
Yes, see https://aspnetboilerplate.com/Pages/Documents/Entity-History.
In AspNet Zero, you can define tracked entities in EntityHistoryHelper.cs
You also need to uncomment the lines related to EntityHistory in {YourProjectName}EntityFrameworkCoreModule.cs.
-
0
Great, thank you, it works :)