How can i filter a date field in document store table (NoSQL) in c#. i need to filter created ate greater than particular time.
the date is storing as string values in nosql.
I had only found the below mentioned code to filter in C# mysql-x-devspi.
var myDb = mySession.GetSchema(Myschema);
var myColl = myDb.CreateCollection("Mytbl",true);
var docs = myColl.Find("createdtime > :starttime")
.Bind("starttime", DateTime.UtcNow)
.Execute();