Example #1
0
        public SelectResultManager(DBContext dbContext)
        {

            _DBContext                        = dbContext;
            _SettingCache                     = new SelectSettingCache();
            _Aggregates                       = new Dictionary<string, Dictionary<EdgeList, List<SelectionElementAggregate>>>();
            _Groupings                        = new Dictionary<string, List<SelectionElement>>();
            _Selections                       = new Dictionary<string, Dictionary<EdgeList, List<SelectionElement>>>();
            _SelectionElementsTypeIndependend = new List<SelectionElement>();


        }
Example #2
0
		public SelectResultManager(DBContext dbContext)
		{

			_DBContext                        = dbContext;
			_SettingCache                     = new SelectSettingCache();
			_Aggregates                       = new Dictionary<string, Dictionary<EdgeList, List<SelectionElementAggregate>>>();
			_Groupings                        = new Dictionary<string, List<SelectionElement>>();
			_Selections                       = new Dictionary<string, Dictionary<EdgeList, List<SelectionElement>>>();
			_SelectionElementsTypeIndependend = new List<SelectionElement>();

            _DefaultSpecialAttributes.Add(new SpecialTypeAttribute_UUID());
            _DefaultSpecialAttributes.Add(new SpecialTypeAttribute_TYPE());

		}