Esempio n. 1
0
 public bool Equals(TableDetailInfo other)
 {
     return(Name == other.Name &&
            CategoryPath == other.CategoryPath &&
            TableRowsCount == other.TableRowsCount &&
            TableEnabledRowsCount == other.TableEnabledRowsCount &&
            TableDisabledRowsCount == other.TableDisabledRowsCount &&
            TableAllTagRowsCount == other.TableAllTagRowsCount &&
            TableServerTagRowsCount == other.TableServerTagRowsCount &&
            TableClientTagRowsCount == other.TableClientTagRowsCount &&
            TableUnusedTagRowsCount == other.TableUnusedTagRowsCount &&
            ColumnsCount == other.ColumnsCount &&
            ColumnsAllTagCount == other.ColumnsAllTagCount &&
            ColumnsServerTagCount == other.ColumnsServerTagCount &&
            ColumnsClientTagCount == other.ColumnsClientTagCount &&
            ColumnsUnusedTagCount == other.ColumnsUnusedTagCount);
 }
Esempio n. 2
0
        public TableDetailInfo GetTableDetailInfo()
        {
            var cremaDataTable  = this.DataSet.Tables[this.Name, this.CategoryPath].Rows;
            var columnInfos     = this.TableInfo.Columns;
            var tableDetailInfo = new TableDetailInfo
            {
                Name                    = this.Name,
                CategoryPath            = this.CategoryPath,
                TableRowsCount          = cremaDataTable.Count(),
                TableEnabledRowsCount   = cremaDataTable.Count(o => o.IsEnabled),
                TableDisabledRowsCount  = cremaDataTable.Count(o => !o.IsEnabled),
                TableAllTagRowsCount    = cremaDataTable.Count(o => o.Tags == TagInfo.All),
                TableServerTagRowsCount = cremaDataTable.Count(o => o.Tags == TagInfoUtility.Server),
                TableClientTagRowsCount = cremaDataTable.Count(o => o.Tags == TagInfoUtility.Client),
                TableUnusedTagRowsCount = cremaDataTable.Count(o => o.Tags == TagInfo.Unused),
                ColumnsCount            = columnInfos.Count(),
                ColumnsAllTagCount      = columnInfos.Count(o => o.Tags == TagInfo.All),
                ColumnsServerTagCount   = columnInfos.Count(o => o.Tags == TagInfoUtility.Server),
                ColumnsClientTagCount   = columnInfos.Count(o => o.Tags == TagInfoUtility.Client),
                ColumnsUnusedTagCount   = columnInfos.Count(o => o.Tags == TagInfo.Unused)
            };

            return(tableDetailInfo);
        }