MongoServerGetDatabase Method (String, WriteConcern) |
Gets a MongoDatabase instance representing a database on this server.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax public virtual MongoDatabase GetDatabase(
string databaseName,
WriteConcern writeConcern
)
Public Overridable Function GetDatabase (
databaseName As String,
writeConcern As WriteConcern
) As MongoDatabase
abstract GetDatabase :
databaseName : string *
writeConcern : WriteConcern -> MongoDatabase
override GetDatabase :
databaseName : string *
writeConcern : WriteConcern -> MongoDatabase
Parameters
- databaseName
- Type: SystemString
The name of the database. - writeConcern
- Type: MongoDB.DriverWriteConcern
The write concern to use with this database.
Return Value
Type:
MongoDatabaseA new or existing instance of MongoDatabase.
See Also