开发者

Samus Mongodb-csharp Inserting Dates & Querying by Dates

开发者 https://www.devze.com 2023-01-15 18:06 出处:网络
I am using the MongoDB-Csharp driver and I was wondering what the proper way to insert and query date field?

I am using the MongoDB-Csharp driver and I was wondering what the proper way to insert and query date field?

I tried using storing the dates using System.DateTime, but I am having issues when I try to query by date.

example开发者_开发技巧:

Inserting Data

var mongo = new Mongo();
var db = mongo.GetDatabase(dbName);
var collection = db.GetCollection(collectionName);

var document = new Document();
document["date"] = DateTime.Now.ToUniversalTime();
collection.Save(document);

Querying Data

var mongo = new Mongo();
var db = mongo.GetDatabase(dbName);
var collection = db.GetCollection(collectionName);
var results = collection.Find(
new Document()
{
    {
        "date",
        new Document()
        {
            {
                "$lte", DateTime.Now.ToUniversalTime()
            }
        }
    }
}
);


As the MongoDB shell is a JavaScript shell, you need to use the JavaScript Date object:

db.datetest.insert({"event": "New Year's Day 2011", "date": new Date(2011, 0, 1)});
db.datetest.insert({"event": "Now", "date": new Date()});

Note that if you pass year, month, date to the constructor the months start at 0.

You can also pass a string to its constructor but it seems to ignore the locale so your date needs to be formatted US-style:

db.datetest.insert({"event": "Christmas Day 2010", "date": new Date('12/25/2010')});

Be sure to use new Date() rather than just Date(), because Date() just returns a string and you won't be able to query it as a Date.

The MongoDB-CSharp driver will convert the .NET DateTime object into a MongoDB Date object when it serializes it to BSON.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号