MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

PowerShell nicht kompatibel mit den Methoden des MongoDB C#-Treibers?

Ich hoffe, das kann Ihnen trotzdem weiterhelfen, das hat bei mir mit dem neuesten C#-Treiber und dem aktuellen MongoDB RC-4 funktioniert.

function Get-MongoDBCollection {
Param(
    $database,
    $CollectionName,
    $settings = $null, #[MongoDB.Driver.MongoCollectionSetting]
    $returnType = [PSOBJECT]
)
    $method = $database.GetType().GetMethod('GetCollection')
    $gericMethod = $method.MakeGenericMethod($returnType)
    $gericMethod.Invoke($database,[object[]]($CollectionName,$settings))
}
$Collection = Get-MongoDBCollection $database 'test'
# or 
$Collection = Get-MongoDBCollection $database 'test' -returnType  ([MongoDB.Bson.BsonDocument])