We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95abf31 commit 2f6ef93Copy full SHA for 2f6ef93
README.md
@@ -237,11 +237,16 @@ Choice of store is configured in appsettings with the key **OutboxType**.
237
}
238
```
239
240
+- **DatabaseName** is optional and is by default 'EventStore'
241
+- **CollectionName** is optional and is by default 'Events'.
242
+- **ConnectionString**: is required and must include uri schema, host and port (eg. mongodb://localhost:27017)
243
+
244
##### Ef core
245
246
{
247
"OutboxOptions": {
- "OutboxType": "ef"
248
+ "OutboxType": "ef",
249
+ "DeleteAfter": true
250
251
252
0 commit comments