dotnet-cqrs/docs/troubleshooting/event-streaming-errors.md

328 B

Event Streaming Errors

Troubleshoot event streaming issues.

Stream Not Found

Error: Stream does not exist

Solution: Create stream before appending

await eventStore.CreateStreamAsync("orders");

See Also