Provides an automated way to reuse open database connections within the context of a single data portal operation. More...
Public Member Functions | |
void | Dispose () |
Dispose object, dereferencing or disposing the connection it is managing. More... | |
void | Dispose () |
Dispose object, dereferencing or disposing the connection it is managing. More... | |
Static Public Member Functions | |
static ConnectionManager | GetManager (string database) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager | GetManager (string database, string label) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager | GetManager (string database, bool isDatabaseName) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager | GetManager (string database, bool isDatabaseName, string label) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager< C > | GetManager (string database) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager< C > | GetManager (string database, string label) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager< C > | GetManager (string database, bool isDatabaseName) |
Gets the ConnectionManager object for the specified database. More... | |
static ConnectionManager< C > | GetManager (string database, bool isDatabaseName, string label) |
Gets the ConnectionManager object for the specified database. More... | |
Properties | |
IDbConnection | Connection [get] |
Dispose object, dereferencing or disposing the connection it is managing. More... | |
int | RefCount [get] |
Gets the current reference count for this object. More... | |
C | Connection [get] |
Gets the open database connection object. More... | |
Provides an automated way to reuse open database connections within the context of a single data portal operation.
This type stores the open database connection in Csla.ApplicationContext.LocalContext and uses reference counting through IDisposable to keep the connection open for reuse by child objects, and to automatically dispose the connection when the last consumer has called Dispose." </remarks> </summary> <typeparam name="C"> Type of database connection object to use. </typeparam> <remarks> This type stores the open database connection in <see cref="Csla.ApplicationContext.LocalContext" /> and uses reference counting through <see cref="IDisposable" /> to keep the connection open for reuse by child objects, and to automatically dispose the connection when the last consumer has called Dispose."
C | : | IDbConnection | |
C | : | new() |
Definition at line 32 of file ConnectionManagerT.cs.
void Csla.Data.ConnectionManager< C >.Dispose | ( | ) |
Dispose object, dereferencing or disposing the connection it is managing.
Definition at line 208 of file Csla/Data/ConnectionManager.cs.
void Csla.Data.ConnectionManager< C >.Dispose | ( | ) |
Dispose object, dereferencing or disposing the connection it is managing.
Definition at line 199 of file ConnectionManagerT.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | Database name as shown in the config file. |
Definition at line 45 of file Csla/Data/ConnectionManager.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | Database name as shown in the config file. |
Definition at line 46 of file ConnectionManagerT.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | The database name or connection string. |
isDatabaseName | True to indicate that the connection string should be retrieved from the config file. If False, the database parameter is directly used as a connection string. |
Definition at line 77 of file Csla/Data/ConnectionManager.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | The database name or connection string. |
isDatabaseName | True to indicate that the connection string should be retrieved from the config file. If False, the database parameter is directly used as a connection string. |
Definition at line 78 of file ConnectionManagerT.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | The database name or connection string. |
isDatabaseName | True to indicate that the connection string should be retrieved from the config file. If False, the database parameter is directly used as a connection string. |
label | Label for this connection. |
Definition at line 97 of file Csla/Data/ConnectionManager.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | The database name or connection string. |
isDatabaseName | True to indicate that the connection string should be retrieved from the config file. If False, the database parameter is directly used as a connection string. |
label | Label for this connection. |
Definition at line 98 of file ConnectionManagerT.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | Database name as shown in the config file. |
label | Label for this connection. |
Definition at line 58 of file Csla/Data/ConnectionManager.cs.
|
static |
Gets the ConnectionManager object for the specified database.
database | Database name as shown in the config file. |
label | Label for this connection. |
Definition at line 59 of file ConnectionManagerT.cs.
|
get |
Dispose object, dereferencing or disposing the connection it is managing.
Definition at line 167 of file Csla/Data/ConnectionManager.cs.
|
get |
Gets the open database connection object.
Definition at line 158 of file ConnectionManagerT.cs.
|
get |
Gets the current reference count for this object.
Definition at line 181 of file Csla/Data/ConnectionManager.cs.