Interface IDatabaseConnectionSettings
The basic settings of the database connection.
Namespace: Silverback.Storage
Assembly: Silverback.Storage.Relational.dll
Syntax
public interface IDatabaseConnectionSettings
Properties
ConnectionString
Gets the connection string to the database.
Declaration
string ConnectionString { get; }
Property Value
| Type | Description |
|---|---|
| string |
CreateTableTimeout
Gets the timeout for the table creation.
Declaration
TimeSpan CreateTableTimeout { get; init; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |
DbCommandTimeout
Gets the database command timeout.
Declaration
TimeSpan DbCommandTimeout { get; init; }
Property Value
| Type | Description |
|---|---|
| TimeSpan |
TableName
Gets the name of the Kafka offset store table.
Declaration
string TableName { get; init; }
Property Value
| Type | Description |
|---|---|
| string |