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
The only consideration would be the naming of the corresponding fluent API, and whether or not you want those methods to all be verbs.
.Argument("foo").ValidateWith<FooValidator>();// verb.Argument("foo").NoValidation();// not a verb.Argument("foo").NoImplicitValidation();// not a verb
I don't (😉) love the use of contractions in type/variable names. What do you think about alternatives like:
DontValidateAttribute
->DisableValidationAttribute
-> f.e.[DisableValidation]
DontValidateImplicitlyAttribute
->DisableImplicitValidationAttribute
-> f.e.[DisableImplicitValidation]
?
The text was updated successfully, but these errors were encountered: