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.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
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