I have a class:
class myClass {
public String str1 = String.Empty;
public String str2 = String.Empty;
....
}
Now i want to create a rule on Save context. The rule must validate whether my property str1 is equal to property str2
--> You automatically see that this can be used to confirm passwords etc... but i can't figure it out how i can do this!
Thanks!