-
Hi All, I have written a function to check the validation in the children of a parent business object like this public List<string> CheckRules() { //check rule for all its childs foreach (var child in this.FieldManager.GetChildren()) { //first check if the child is modelbase var po = child as IPhoenixModelBase;...
-
Hi All, I have a form with some silverlight data bound controls along with the csla propertystatus controls. Now the business object it is bound to, have some business rules in it. If I am explicitly making changes to the data in the control which in turn triggers any validation error i am getting a...