-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Milestone
Description
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)