Пример #1
0
        internal IList <ColumnX> GetChoiceProperties(TableX tx)
        {
            var selectList = new List <ColumnX>(5);

            if (_relation_Store_ColumnX.TryGetChildren(tx, out IList <ColumnX> cxList))
            {
                foreach (var cx in cxList)
                {
                    if (cx.IsChoice)
                    {
                        selectList.Add(cx);
                    }
                }
            }
            return(selectList);
        }
Пример #2
0
 protected override IList <ColumnX> GetChildItems() => _relation_Store_ColumnX.TryGetChildren(Item, out IList <ColumnX> list) ? list : new ColumnX[0];