File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class MyWorkflow : IWorkflow
20
20
builder
21
21
.StartWith <Task1 >()
22
22
.Then <Task2 >()
23
- .Then < Task3 > ;
23
+ .Then <Task3 >() ;
24
24
}
25
25
}
26
26
```
@@ -66,7 +66,7 @@ public class MyWorkflow : IWorkflow
66
66
.StartWith <CreateUser >()
67
67
.Input (step => step .Email , data => data .Email )
68
68
.Input (step => step .Password , data => data .Password )
69
- .Output (data => data .UserId , step => step .UserId );
69
+ .Output (data => data .UserId , step => step .UserId )
70
70
.Then <SendConfirmationEmail >()
71
71
.WaitFor (" confirmation" , data => data .UserId )
72
72
.Then <UpdateUser >()
@@ -118,6 +118,7 @@ There are several persistence providers available as separate Nuget packages.
118
118
* [ SQL Server] ( src/providers/WorkflowCore.Persistence.SqlServer )
119
119
* [ PostgreSQL] ( src/providers/WorkflowCore.Persistence.PostgreSQL )
120
120
* [ Sqlite] ( src/providers/WorkflowCore.Persistence.Sqlite )
121
+ * [ MySQL] ( src/providers/WorkflowCore.Persistence.MySQL )
121
122
* Redis * (coming soon...)*
122
123
123
124
## Search
You can’t perform that action at this time.
0 commit comments