这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cKey dffe7ffe4e Fixed the retry mechanism in webhooks and tasks modules 3 years ago
..
LINGYUN/Abp/AuditLogging/EntityFrameworkCore Fixed the retry mechanism in webhooks and tasks modules 3 years ago
FodyWeavers.xml chore: upgrade abp framework to 5.0.0-rc.1 4 years ago
FodyWeavers.xsd chore: upgrade abp framework to 5.0.0-rc.1 4 years ago
LINGYUN.Abp.AuditLogging.EntityFrameworkCore.csproj upgrade abp framework to 7.0.0 3 years ago
README.md feat(module): adjust module structure 4 years ago

README.md

LINGYUN.Abp.AuditLogging.EntityFrameworkCore

审计模块 EntityFrameworkCore 实现, 此模块仅作为桥梁, 具体实现交给abp官方模块

AuditLogManager 实现了 IAuditLogManager, 审计日志由Volo.Abp.AuditLogging模块管理
SecurityLogManager 实现了 ISecurityLogManager, 安全日志由Volo.Abp.Identity模块管理

模块引用

[DependsOn(typeof(AbpAuditLoggingEntityFrameworkCoreModule))]
public class YouProjectModule : AbpModule
{
  // other
}

配置项

请遵循 Volo.Abp.AuditLogging、Volo.Abp.Identity模块中的配置

appsettings.json

{
  "ConnectionStrings": {
    "AbpIdentity": "Server=127.0.0.1;Database=Identity;User Id=root;Password=*",
    "AbpAuditLogging": "Server=127.0.0.1;Database=AuditLogging;User Id=root;Password=*",
  }
}