30% OFF - 10th Anniversary discount on new purchases until December 15 with code: ZZZANNIVERSARY10
Entity Framework Extensions AuditActionType
Description
The AuditActionType
enum represents the action that has been performed (Delete, Insert or Update).
The action is used in the AuditEntry class.
// The namespace is different because the https://bulk-operations.net/ library is used under the hood. namespace Z.BulkOperations { /// <summary>The `AuditActionType` enum represents the action that has been performed (Delete, Insert or Update). The action is used in the [AuditEntry](audit-entry) class.</summary> public enum AuditActionType { /// <summary>The name/value that represents the DELETE operation.</summary> Delete = 0, /// <summary>The name/value that represents the INSERT operation.</summary> Insert = 1, /// <summary>The name/value that represents the UPDATE operation.</summary> Update = 2 } }
Example
We will demonstrate how to retrieve AuditEntries
by the AuditActionType
value.
Execute
We will execute a BulkMerge
on a list that contains 1 new customer and 2 existing customers.
Code
// Execute List<AuditEntry> auditEntries = new List<AuditEntry>(); context.BulkMerge(list, options => { options.UseAudit = true; options.AuditEntries = auditEntries; }); // Result FiddleHelper.WriteTable("1 - Inserted Customers", auditEntries.Where(x => x.Action == AuditActionType.Insert)); FiddleHelper.WriteTable("2 - Updated Customers", auditEntries.Where(x => x.Action == AuditActionType.Update));
Try it: .NET Core | .NET Framework
Result
We outputted AuditEntries
by the AuditActionType
value:
AuditActionType.Insert
: Will display the 1 new customerAuditActionType.Update
: Will display the 2 existing customers
ZZZ Projects