Coder Social home page Coder Social logo

Comments (3)

thepirat000 avatar thepirat000 commented on June 8, 2024 1

You can access the DbContext inside your custom action with

.AuditEntityAction<AuditLog>((ev, entry, auditEntity) =>
{
    var dbContext = entry.GetEntry().Context;
    // ...
});

So I guess you could explicitly load the related entities with:

dbContext.Entry(entity).Reference(e => e.Unit).Load();
dbContext.Entry(entity).Reference(e => e.Status).Load();

from audit.net.

thepirat000 avatar thepirat000 commented on June 8, 2024

You can access the object being updated from the AuditEntityAction, for example:

Audit.Core.Configuration.Setup()
    .UseEntityFramework(ef => ef
        .AuditTypeMapper(t => typeof(AuditLog))
        .AuditEntityAction<AuditLog>((ev, entry, auditEntity) =>
            {
                // Since "IncludeEntityObjects" is configured, we can get the entity from entry.Entity
                // (otherwise, you could use entry.GetEntry().Entity)
                if (entry.Entity is Entity entity)
                {
                    var status = entity.Status;
                    var unit = entity.Unit;

                    // do whatever you need with the Status and Unit objects
                }
                auditEntity.ActionType = entry.Action;
                ...
            }
        )
        .IgnoreMatchedProperties(true)
    );

from audit.net.

AndreOGodoy avatar AndreOGodoy commented on June 8, 2024

I tried that, but the object come as null

image

I found that if I .Include(e => e.Status) before calling await context.SavesChangesAsync(), it will load correctly! But, will this imply that I need to Include all sub-entities before?

Could I somehow load the dbcontext inside the AuditEntityAction, and include as needed, to avoid loading tons of unrelated properties? If yes, how? I have an idea on how to implement the second part, but currently having problems instantiating the db context there

from audit.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.