.NET 11 is getting support for async validation in System.ComponentModel.DataAnnotations: https://www.reddit.com/r/dotnet/comments/1ukw9ny/async_model_validation_is_finally_coming_in_net_11/
A few things to consider:
- this project already defines an
IAsyncValidatableObject interface which will cause naming conflicts with the new interface introduced in .NET 11
- the
Validator and ValidationAttribute types are getting new methods to support async validation which this project should call into as appropriate when running on .NET 11
.NET 11 is getting support for async validation in
System.ComponentModel.DataAnnotations: https://www.reddit.com/r/dotnet/comments/1ukw9ny/async_model_validation_is_finally_coming_in_net_11/A few things to consider:
IAsyncValidatableObjectinterface which will cause naming conflicts with the new interface introduced in .NET 11ValidatorandValidationAttributetypes are getting new methods to support async validation which this project should call into as appropriate when running on .NET 11