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
.Ensure(m => m.Prop, o => o
.Satisfies(prop => condition1)
.When(x => condition2)
In the current version, condition1 and condition2 gets evaluated. But wouldnt be better to not evaluate condition1 if condition2 fails (returns false)?
Expected result: condition1 doesnt get evaluated if condition2 evaluates to false
Thank you
The text was updated successfully, but these errors were encountered:
In this code snippet:
In the current version, condition1 and condition2 gets evaluated. But wouldnt be better to not evaluate condition1 if condition2 fails (returns false)?
Expected result: condition1 doesnt get evaluated if condition2 evaluates to false
Thank you
The text was updated successfully, but these errors were encountered: