View on GitHub

EF.Audit

Easy audit capabilities for EF projects.

Download this project as a .zip file Download this project as a tar.gz file

Description.

This is a simple nuget package that allows you include audit capabilities in your Entity Framework projects.

Auditable Entities.

First of all, you need to mark all your auditable entities using "Auditable" and "NotAuditable" attributes.

Auditable: Can be used to mark a class (including all properties), or a property as auditable. NotAuditable: Marks a property as not auditable.

IMPORTANT: All your auditable entities needs to be serializable.

Enable Audit.

  1. Install EF.Audit nuget package.
  2. Implement "IAuditDbContext" interface in your context.
  3. Whenever you need to save context changes call "SaveChangesAndAudit" method instead of "SaveChanges" one.

Authors and Contributors

Biasmey Morgado Guirola (@biasmey), José Antonio Plá Rodríguez (@jpla2005)

Contributions

Any contribution is welcomed.