using (var nosql = new DbHelper("Feed"))
{
var watch = Stopwatch.StartNew();
nosql.CollectionName = "rawhi";
var x = nosql.GetRecords<Event>(p => true, 0, 1000000);
watch.Stop();
long milliseconds = watch.ElapsedMilliseconds;
Response.Write(milliseconds);
}
xis a type variable IQueryable.
When I run this code, the result is: 0
So, I am wondering if data is stored in xvar or not?
Rawhi source
share