Esempio n. 1
0
 public static ITable SelectEqual(this ITable table, string columnName, DataObject value)
 {
     return table.AsVirtual(() => table.SelectRowsEqual(columnName, value));
 }
Esempio n. 2
0
 public static ITable SelectAll(this ITable table, int columnOffset)
 {
     return table.AsVirtual(() => table.SelectAllRows(columnOffset));
 }
Esempio n. 3
0
 public static ITable SelectEqual(this ITable table, int columnIndex, DataObject value)
 {
     return table.AsVirtual(() => table.SelectRowsEqual(columnIndex, value));
 }
Esempio n. 4
0
 public static ITable NotIn(this ITable table, ITable otherTable, int[] tableColumns, int[] otherColumns)
 {
     return table.AsVirtual(() => SelectRowsNotIn(table, otherTable, tableColumns, otherColumns));
 }