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.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
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