BPMTK is a workflow and Business Process Management (BPM) Platform targeted at business people, developers and system admins, based on .NET Platform(.NET Standard 2.0). Port some good ideas and code from Activiti and jBPM. It's open-source and distributed under the Apache license.
BPMTK 是开源的业务流程平台, 符合BPMN 2.0业务流程语言规范, 一些设计思想、代码来源于Activiti、jBPM, 基于.NET Standard 2.0平台, C#语言开发.
- Download Visual Studio 2017 or 2019 (any edition) from https://www.visualstudio.com/downloads/
- Open bpmtk.sln and wait for Visual Studio to restore all Nuget packages
(ConsoleApp project)
- Remove exists migrations: dotnet ef migrations remove
- Create migrations: dotnet ef migrations add {MigrationName}
- Update database: dotnet ef database update