connection property

OrmConnection get connection

The underlying ORM connection.

Throws StateError if the data source has not been initialized.

Implementation

OrmConnection get connection {
  _ensureInitialized();
  return _connection!;
}