18 lines
351 B
Markdown
18 lines
351 B
Markdown
# Validation Errors
|
|
|
|
Troubleshoot validation issues.
|
|
|
|
## Validation Not Triggering
|
|
|
|
**Problem:** Validation not running
|
|
|
|
**Solution:**
|
|
```csharp
|
|
builder.Services.AddTransient<IValidator<CreateOrderCommand>, CreateOrderCommandValidator>();
|
|
```
|
|
|
|
## See Also
|
|
|
|
- [Troubleshooting Overview](README.md)
|
|
- [Validation](../core-features/validation/README.md)
|