Exemplo n.º 1
0
		private bool WhereNull(DataTableResult row , DataTableSelectorData wheres){

			return string.IsNullOrEmpty(row[wheres.Field]);

		}
Exemplo n.º 2
0
		private bool WhereNotNull(DataTableResult row , DataTableSelectorData wheres){

			return !WhereNull(row, wheres);

		}
Exemplo n.º 3
0
		private bool WhereNested(DataTableResult row , DataTableSelectorData wheres){

			return Filter(row , wheres.Selector.Wheres);

		}