Coder Social home page Coder Social logo

Comments (3)

thepirat000 avatar thepirat000 commented on July 22, 2024

Please share a complete code that compiles, I don't understand what's 'entry' here

Audit.Core.Configuration.AddCustomAction(ActionType.OnEventSaving, async scope =>
{
if (entry.ColumnValues != null)

Are you introducing a closure? Whats the action you are executing and what are you expecting to be logged?

from audit.net.

shubhamCedargate avatar shubhamCedargate commented on July 22, 2024

Audit.Core.Configuration.AddCustomAction(ActionType.OnEventSaving, async scope =>
{
try
{
if (scope != null)
{
var claimsUser = ClaimsPrincipal.Current;
var fullName = claimsUser?.Identity?.Name;
scope.SetCustomField("user", string.IsNullOrEmpty(fullName) ? "" : fullName);
}
foreach (var entry in scope.Event.GetEntityFrameworkEvent()?.Entries)
{
// Fix Primary Key properties
if (entry.PrimaryKey != null)
{
foreach (var pkKey in entry.PrimaryKey.Keys.ToList())
{
entry.PrimaryKey[pkKey] = entry.PrimaryKey[pkKey].ToString();
}
}
//// Fix ColumnValues properties
if (entry.ColumnValues != null)
{
var lastSourceOfModification = entry.ColumnValues["LastSourceOfModification"] ?? string.Empty;
scope.SetCustomField("lastSourceOfModification", lastSourceOfModification);
if (entry.Table == "Patients")
{
var patientId = entry.ColumnValues["Id"] ?? string.Empty;
scope.SetCustomField("patientId", patientId.ToString());
}
}
}
}
catch (Exception ex)
{
Console.WriteLine($"Audit.Core.Configuration Error: {ex}");
}
});

I needed to set Unique Custom Values for each Entry of the Entries node of the Output JSON.
I am getting a customFields inside the entries Json object but it is always empty there and only
has values in the outermost customFields Json (inside the entityFrameworkEvent Json object only)

from audit.net.

thepirat000 avatar thepirat000 commented on July 22, 2024

The scope.SetCustomField will override a custom field in the base AuditEvent.

But the entry has its own custom fields property.

Instead of:

scope.SetCustomField("lastSourceOfModification", lastSourceOfModification);

Do:

entry.CustomFields["lastSourceOfModification"] = lastSourceOfModification;

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.