/// <summary> /// Добавить фильтр /// </summary> /// <param name="where"> Фильтр </param> public void AddWhere(FilterUnitBase where) { if (_WhereList == null) { _WhereList = new List <FilterUnitBase>(); } _WhereList.Add(where); }
public override string ToString() { return(string.Format("{0} {1}", FilterUnitBase.colName(_table, _column), _ordertype)); }
public void RemoveWhere(FilterUnitBase flt) { _WhereList.Remove(flt); }
public FilterNOT(FilterUnitBase flt) { _filter = flt; }