beginSession method
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;
}
Begin a new mutation-recording session. By default the session records every table; call Session.attach to scope it.
Session beginSession() {
final s = Session();
_sessions.add(s);
return s;
}