我需要使用Powershell从mongoDB中检索数据。 假设我有db.orders集合,并且只需要检索上周创建的订单,并且只检索例如_id,status,createdAt字段的特定列。
订单集合架构
{
"_id": ObjectId("56cf9bab78e9fd46ec557d69"),
"status" : "ordered",
...
"total": 343,
"createdAt": ISODate("2016-01-15T17:29:09.342Z")
}
我可以像mongo shell一样查询它
db.orders.find({
"createdAt" : {
$lt: new Date(),
$gte: new Date(new Date().setDate(new Date().getDate()-7))
}
}, {_id: 1, status: 1, createdAt: 1 })
但我需要在Powershell中执行此操作,这是我的Powershell脚本,其中包含简单查询,提取完全创建日期..不是日期范围
$mongoDbDriverPath = "C:\mongodb\bin"
$dbName = "Orders"
$collectionName = "orders"
Add-Type -Path "$($mongoDbDriverPath)\MongoDB.Bson.dll"
Add-Type -Path "$($mongoDbDriverPath)\MongoDB.Driver.dll"
$db =[MongoDB.Driver.MongoDatabase]::Create("mongodb://localhost:27017/$($dbName)")
$collection = $db[$collectionName]
$query = [MongoDB.Driver.Builders.Query]::EQ("createdAt","2016-01-15T17:29:09.342Z")
$results = $collection.find($query)
在MongoDB .NET Driver api中,我无法进行复杂的查询,或者至少不知道如何进行查询。 我可以根据一个特定的列进行查询,但不能进行复杂的查询,也不能限制某些字段的输出。
如果有人知道如何,请告知。 注意:它不是.Net项目,它只使用mongoDB .net驱动程序,但在Powershell中执行。
答案 0 :(得分:0)
请在下面找到解决方案: 它是一个灵活的代码,使用c#inside powershell脚本和最新的mongo驱动程序(2.2.3) - 所以你可以根据需要使用c#代码: - )
$mongoDbDriverPath = "C:\work\mongo"
$dbName = "deser"
$collectionName = "Foo"
$Assem = ( "$($mongoDbDriverPath)\MongoDB.Bson.dll", "$($mongoDbDriverPath)\MongoDB.Driver.dll","$($mongoDbDriverPath)\MongoDB.Driver.Core.dll")
$Source = @”
namespace profesor79
{
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Driver;
public static class Executor
{
public static List<Foo> GetData()
{
var connectionString = "mongodb://localhost:27017";
var _client = new MongoClient(connectionString);
var _database = _client.GetDatabase("deser");
var cole = _database.GetCollection<Foo>("Foo");
cole.InsertOne(new Foo());
var data = cole.Find<Foo>((new BsonDocument())).ToList();
return data;
}
public class Foo
{
public ObjectId Id { get; set; }
[BsonDictionaryOptions]
public Dictionary<string, string> Bar = new Dictionary<string, string>() { { "1", "text" }, { "2", "text" } };
}
}
}
"@
Add-Type -ReferencedAssemblies $Assem -TypeDefinition $Source -Language CSharp
[profesor79.Executor]::GetData()
见截图: