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
Your User Interface type (Angular/MVC/React... etc.) if the issue is related to a specific UI
Blazor Server
Your database provider(EF Core/MongoDB)
EF Core
Hi,
I fallow the documentation steps (https://docs.abp.io/en/abp/4.4/Audit-Logging) to activate EntityHistory for all my entities options.EntityHistorySelectors.AddAllEntities(); but when I try to save some changes nothing happens.
After few debug scenarios i found that the "AuditingManager.Current" is null here
I have set the UseAuditing() in my blazor module and
Configure(options =>
{
options.IsEnabled = true;
options.EntityHistorySelectors.AddAllEntities();
});
I am using abp framework 5.2.1 version. I am running an application as a Blazor server. I need to use audit features. When I update any record, log and audit log are not kept. As a result of my long research, I ran the SaveChangesAsync method in DbContext.cs class by overrride and
var auditLog = AuditingManager?.Current?.Log; On line Current comes as null. I'm guessing it might be because of that. How can I do it?
Hi,
I fallow the documentation steps (https://docs.abp.io/en/abp/4.4/Audit-Logging) to activate EntityHistory for all my entities
options.EntityHistorySelectors.AddAllEntities();
but when I try to save some changes nothing happens.After few debug scenarios i found that the "AuditingManager.Current" is null here
I have set the UseAuditing() in my blazor module and
Configure(options =>
{
options.IsEnabled = true;
options.EntityHistorySelectors.AddAllEntities();
});
Why AuditingManager.Current is null?
The text was updated successfully, but these errors were encountered: