这是基于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.
 
 
 
 
 
 
feijie b5f16b45ae feat(docs): 添加Elsa模块文档 1 year ago
..
LINGYUN/Abp/Elsa/EntityFrameworkCore/SqlServer feat(elsa): 添加对 SQL Server 的支持 1 year ago
FodyWeavers.xml feat(elsa): 添加对 SQL Server 的支持 1 year ago
FodyWeavers.xsd feat(elsa): 添加对 SQL Server 的支持 1 year ago
LINGYUN.Abp.Elsa.EntityFrameworkCore.SqlServer.csproj feat(elsa): 添加对 SQL Server 的支持 1 year ago
README.EN.md feat(docs): 添加Elsa模块文档 1 year ago
README.md feat(docs): 添加Elsa模块文档 1 year ago

README.md

LINGYUN.Abp.Elsa.EntityFrameworkCore.SqlServer

Elsa工作流的SqlServer数据库提供程序模块

功能

  • 提供Elsa工作流的SqlServer数据库支持
  • 依赖于 AbpElsaEntityFrameworkCoreModuleAbpEntityFrameworkCoreSqlServerModule
  • 预配置以下功能:
    • 持久化存储
    • Webhooks存储
    • 工作流设置存储

配置使用

[DependsOn(
    typeof(AbpElsaEntityFrameworkCoreSqlServerModule)
    )]
public class YouProjectModule : AbpModule
{
}

配置项

{
    "Elsa": {
        "Persistence": true,     // 启用持久化存储
        "Webhooks": true,       // 启用Webhooks存储
        "WorkflowSettings": true // 启用工作流设置存储
    }
}

English