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