DatabaseLink Interface

Represents connection to the database.

C#
public interface DatabaseLink : IDisposable
Derived
Implements

Methods

BeginTransaction()

Begins the transaction.

NewSiphon(Action<Func<string>>)

Gets a new siphon with the specified logger.

Methods Detail

BeginTransaction()

Begins the transaction.

C#
Committable BeginTransaction()

Returns

The abstract transaction.

NewSiphon(Action<Func<string>>)

Gets a new siphon with the specified logger.

C#
Siphon NewSiphon(Action<Func<string>> logger)

Parameters

logger
Action<Func<string>>

The logger to record statements.

Returns

The new siphon.