from<T extends HasResultSet, D> method

  1. @Deprecated('Experiment ended - use the methods on the [table] directly')
TableOrViewOperations<T, D> from<T extends HasResultSet, D>(
  1. ResultSetImplementation<T, D> table
)

Captures a table or view for easier subsequent operations.

The TableOrViewOperations class (or the TableOperations extension for tables) provides convenience methods that make common operations easier to write than using the methods from this class directly.

This method is deprecated. For an even easier access, the methods that were made available here are now available on the table or view instance directly.

Implementation

@Deprecated('Experiment ended - use the methods on the [table] directly')
TableOrViewOperations<T, D> from<T extends HasResultSet, D>(
    ResultSetImplementation<T, D> table) {
  return TableOrViewOperations._(this, table);
}