MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

PowerShell non è compatibile con i metodi del driver C# MongoDB?

Spero che questo possa essere ancora di aiuto, questo ha funzionato per me con l'ultimo driver C# e l'attuale MongoDB RC-4.

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])