Ejemplo n.º 1
0
 private Session()
 {
     StoreManager.Start();
     //RegisterWaitEventAsync();
 }
Ejemplo n.º 2
0
        //public int Count<T>(Expression<Func<T, bool>> filter) where T : class, new()
        //{
        //  Generic2BsonLambdaConverter visitor = new Generic2BsonLambdaConverter();
        //  var expr = visitor.Visit(filter) as Expression<Func<JObject, bool>>;
        //  return Count(typeof(T).Name, expr);
        //}
        #endregion

        public static void ShutDown()
        {
            StoreManager.ShutDown();
        }
Ejemplo n.º 3
0
 public static void Start()
 {
     StoreManager.Start();
 }
Ejemplo n.º 4
0
 public IObjectStore GetCollection(string collection)
 {
     return(StoreManager.GetObjectStore(_databasename, collection));
 }