beginSession method

Session beginSession()

Begin a new mutation-recording session. By default the session records every table; call Session.attach to scope it.

Implementation

Session beginSession() {
  final s = Session();
  _sessions.add(s);
  return s;
}