Skip to content

Commit 8a3c886

Browse files
authored
Create README.md
1 parent 4d67302 commit 8a3c886

File tree

1 file changed

+19
-0
lines changed
  • src/providers/WorkflowCore.Persistence.PostgreSQL

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# PostgreSQL Persistence provider for Workflow Core
2+
3+
Provides support to persist workflows running on [Workflow Core](../../README.md) to a PostgreSQL database.
4+
5+
## Installing
6+
7+
Install the NuGet package "WorkflowCore.Persistence.PostgreSQL"
8+
9+
```
10+
PM> Install-Package WorkflowCore.Persistence.PostgreSQL -Pre
11+
```
12+
13+
## Usage
14+
15+
Use the .UsePostgreSQL extension method when building your service provider.
16+
17+
```C#
18+
services.AddWorkflow(x => x.UsePostgreSQL(@"Server=127.0.0.1;Port=5432;Database=workflow;User Id=postgres;Password=password;", true, true));
19+
```

0 commit comments

Comments
 (0)