Beispiel #1
0
        // Group by + Order by
        public DataNode <string, Cell> Groupby(IEnumerable <string> indexColumns, string leafColumn)
        {
            if (_grouper == null)
            {
                _grouper = new TableGrouper(_dataTbl);
            }

            return(_grouper.GroupBy(indexColumns, leafColumn));
        }
Beispiel #2
0
 private void FetchTable()
 {
     _dataTbl = _dataProvider.Fetch();
     _grouper = new TableGrouper(_dataTbl);
 }