You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Instant CRUD UI also includes effortless support for maintaining a detailed audit history for changes to
129
+
select tables by inheriting from the `AuditBase` base class, e.g:
130
+
131
+
```ts
132
+
exportclassJobextendsAuditBase {
133
+
...
134
+
}
135
+
```
136
+
137
+
This will include additional `CreatedBy`, `CreatedDate`, `ModifiedBy`, `ModifiedDate`, `DeletedBy` and `DeletedDate`
138
+
properties to the specified Table and also generates the necessary [Audit Behaviors](https://docs.servicestack.net/autoquery/crud#apply-generic-crud-behaviors)
139
+
on the AutoQuery APIs to maintain the audit history for each CRUD operation.
140
+
141
+
### AutoQuery CRUD Audit Log
142
+
143
+
As the **blazor-admin** and **blazor-vue** templates are configured to use the [AutoQuery CRUD Executable Audit Log](https://docs.servicestack.net/autoquery/audit-log)
144
+
in its [Configure.AutoQuery.cs](https://github.com/NetCoreTemplates/blazor-admin/blob/main/MyApp/Configure.AutoQuery.cs)
145
+
the Audit Behaviors will also maintain an Audit Trail of all CRUD operations which can be viewed in the Admin UI:
Another productivity feature of AutoQuery CRUD is its effortless support for maintaining audit history of
454
-
important tables which can be enabled by inheriting from the `AuditBase` base class, e.g:
455
-
456
-
```ts
457
-
exportclassBookingextendsAuditBase {
458
-
...
459
-
}
460
-
```
461
-
462
-
Which will include the necessary `CreatedBy`, `CreatedDate`, `ModifiedBy`, `ModifiedDate`, `DeletedBy` and `DeletedDate`
463
-
properties in the Booking Table and also generating the necessary [Audit Behaviors](https://docs.servicestack.net/autoquery/crud#apply-generic-crud-behaviors)
464
-
on the AutoQuery APIs to maintain the audit history for each CRUD operation.
465
-
466
-
### AutoQuery CRUD Audit Log
467
-
468
-
As the **blazor-admin** and **blazor-vue** templates are configured to use the [AutoQuery CRUD Executable Audit Log](https://docs.servicestack.net/autoquery/audit-log)
0 commit comments