Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 913 Bytes

README.md

File metadata and controls

25 lines (14 loc) · 913 Bytes

EF Core 6 Audit Logging

A small project used to learn:

  • Audit logging
  • Audit logging value objects (owned types)
  • Using JSON value converters with EF Core
  • Persisting the new DateOnly & TimeOnly types using EF
  • EF Core 6 Migrations

    NOTE: This project uses SQLLite for the database but could easily be changed to a SQL Server by changing the connection string.

    To Dos

    Need to update audit logging to handle a property that is a list of owned types currently it will only handle as a property that is a singular owned type

    Kudos

    While researching how to get EF Core 6 to work with the new .NET 6 DateOnly & TimeOnly types. I came across this great .NET Utility TinyHelpers. Thank you Marco Minerva for sharing this great library!