示例#1
0
        protected override void OnIDChanged()
        {
            base.OnIDChanged();

            this._AllChildrenRelations = null;
            this._AllChildren          = null;
            this._CurrentlChildren     = null;
        }
示例#2
0
        protected PC.SCRelationObjectCollection FilterChildren(PC.SCChildrenRelationObjectCollection src, string[] ids)
        {
            PC.SCRelationObjectCollection result = null;
            if (src != null)
            {
                result = new PC.SCRelationObjectCollection();
                foreach (string key in ids)
                {
                    result.Add(src[key]);
                }
            }

            return(result);
        }