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

MongoDB – Suche nach Datum und Uhrzeit mit dem C#-Treiber

BSON-Attribut zum dateTime-Feld hinzufügen (siehe unten),

Sie können die linqu-Syntax verwenden, um eine solche Abfrage zu erstellen

    var min = new DateTime(2016, 03, 03, 22, 0, 0);
    var max = (new DateTime(2016, 03, 03, 23, 0, 0));
    List<TestClassForMongo> searchResult = collection.Find( 
                x => x.CreatedDateUtc > min &
                x.CreatedDateUtc < max
                ).ToList();
public class TestClassForMongo
{
    public ObjectId Id { get; set; }

    [BsonDateTimeOptions]
    public DateTime CreatedDateUtc { get; set; }

    public string Message { get; set; }
}