-
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;...