Ejemplo n.º 1
0
        public static SmartStore GetGlobalSmartStore()
        {
            var store = new SmartStore(null); // generate a "global" smartstore

            store.CreateMetaTables();
            return(store);
        }
Ejemplo n.º 2
0
        public static SmartStore GetSmartStore(Account account)
        {
            var store = new SmartStore(account);

            store.CreateMetaTables();
            return(store);
        }
 public static SmartStore GetGlobalSmartStore()
 {
     var store = new SmartStore(null); // generate a "global" smartstore
     store.CreateMetaTables();
     return store;
 }
 public static SmartStore GetSmartStore(Account account)
 {
     var store = new SmartStore(account);
     store.CreateMetaTables();
     return store;
 }