Manages database operations for a specific database provider implementing the IDatabase interface.
- Namespace
- DbSyncKit
.DB - Base Types
-
- IDisposable
graph BT
Type-->Base0["IDisposable"]
Type["DatabaseManager<T>"]
class Type type-node
Syntax
public class DatabaseManager<T> : IDisposable where T : IDatabase
Type Parameters
Name | Description |
---|---|
T | Type of the database provider implementing IDatabase. |
Constructors
Name | Summary |
---|---|
DatabaseManager |
Initializes a new instance of the DatabaseManager class. |
Methods
Name | Return Value | Summary |
---|---|---|
Dispose |
void |
Disposes of the DatabaseManager.
|
ExecuteQuery |
List |
Executes a query against the database and returns a list of results for a specific data type.
|