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

18 lines
328 B
Markdown

# Event Streaming Errors
Troubleshoot event streaming issues.
## Stream Not Found
**Error:** Stream does not exist
**Solution:** Create stream before appending
```csharp
await eventStore.CreateStreamAsync("orders");
```
## See Also
- [Troubleshooting Overview](README.md)
- [Event Streaming](../event-streaming/README.md)