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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
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