You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the source code of Validator.ValidateObject / Validator.TryValidateObject we can see they will first validate all the attributes, then if the given object instance are IValidatableObject, it will call the IValidatableObject.Validate to validate it.
I believe it's quite important to make this behavior explicit as people may already rely on this behavior for a long time.