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
As you see we have a #114 almost done by @paw3lx. However we spotted that this feature requires the whole rules chain to be resolved inside Validate() method since the object is required as a one of the parameter of the selector. This will cause the inconsistency comparing to the previous solution where each chain is resolved inside ValitRules object (more precisely inside Ensure()). Now we have two options:
Move all creations of rules chain to Validate() method to be consistent
Get rid of old overloads which don't require second parameter, so the object (again to be consistent)
The text was updated successfully, but these errors were encountered:
As you see we have a #114 almost done by @paw3lx. However we spotted that this feature requires the whole rules chain to be resolved inside
Validate()
method since the object is required as a one of the parameter of the selector. This will cause the inconsistency comparing to the previous solution where each chain is resolved insideValitRules
object (more precisely insideEnsure()
). Now we have two options:Validate()
method to be consistentThe text was updated successfully, but these errors were encountered: