expressappframework-403114-data-security-and-safety-audit-trail-audit-trail-module-xpo.md
The Audit Trail is implemented by the DevExpress.ExpressApp.AuditTrail.Xpo.v25.2.dll assembly. Use approaches described in the following topic to add the module in your application: Register a Built-in XAF Module.
Check that the DevExpress.Persistent.Base.v25.2.dll assembly is referenced in your application, since it contains XAF-independent services used by the Audit Trail module.
The Audit Trail Module logs changes in the following objects and properties:
Read-only properties (those without a setter) and properties decorated with the NonPersistentAttribute are excluded from the audit trail.
You can change the default module behavior — add or delete objects and properties to log. For more information, see the following topic: Specify Objects and Properties to Be Audited.
When the object is modified in the Detail View, the initial values are copied immediately when an object has been loaded. When the object is modified in Editable List View, initial values are copied in the BaseObjectSpace.ObjectChanged event. The actual values are collected and saved in a separate UnitOfWork in the BaseObjectSpace.Committed event.
In code, changes are represented by the AuditDataItem class. This class’ properties are logged. By default, they are saved to the database by an AuditDataStore object. This object creates an AuditDataItemPersistent persistent object and saves it to the database. To save changes represented by the AuditDataItem objects in another storage, inherit a custom class from the AuditDataStore class and override the Save method (see the Customize the Audit Trail System topic).
Audit information is logged to the application database. The Audit Trail module adds the following tables to the database:
AuditDataItemPersistent
The table where AuditDataItemPersistent objects are stored. Each time one of the changes listed above is made, a new record is added to this table. The table’s AuditedObject field contains references to the corresponding records in the AuditObjectWeakReference table. The OldObject and NewObject fields contain references to the corresponding records in the XPWeekReference table. String representations of these fields are stored in the OldValue and NewValue fields, respectively.
Note
AuditedObject is null for deleting operation when the deferred deletion option is disabled for the audited type. Use the DeferredDeletionAttribute to enable it.OldObject / OldValue fields.XPWeakReferenceContains data on the objects that have been changed. Object identifiers are stored as strings.AuditedObjectWeakReferenceContains data on both objects that have been changed and objects that have taken part in a change. Object identifiers are stored in the GuidId or IntId field, depending on whether they are stored as Guid or integer values. Thus, the AuditedObjectWeakReference table represents a more convenient way to access object data in comparison to the XPWeakReference table.
It is possible to lose some of the object changes if these changes are performed within a session that is not audited. This can occur if you manually create a Session or UnitOfWork. To avoid such a failure, use the CreateObjectSpace<T>() method when you need to create your own Session or UnitOfWork:
IObjectSpace objectSpace = Application.CreateObjectSpace<MyBusinessClass>();
// do not write a statement like the following
// Session session = new Session(...);
You need to add the Audit Trail Module only to the server application:
public class Startup {
// ...
public void ConfigureServices(IServiceCollection services) {
// ...
services.AddXafMiddleTier(Configuration, builder => {
builder.Modules
.AddAuditTrailXpo()
// ...
}
}
}
See Also
Miscellaneous Customizations of the Audit Trail System (XPO)
Built-in Business Classes & Interfaces
How to reuse XAF Audit Trail module functionality in a non-XAF WinForms application