コード例 #1
0
        public static SmartStore GetGlobalSmartStore()
        {
            var store = new SmartStore(null); // generate a "global" smartstore

            store.CreateMetaTables();
            return(store);
        }
コード例 #2
0
        public static SmartStore GetSmartStore(Account account)
        {
            var store = new SmartStore(account);

            store.CreateMetaTables();
            return(store);
        }
コード例 #3
0
 public static SmartStore GetGlobalSmartStore()
 {
     var store = new SmartStore(null); // generate a "global" smartstore
     store.CreateMetaTables();
     return store;
 }
コード例 #4
0
 public static SmartStore GetSmartStore(Account account)
 {
     var store = new SmartStore(account);
     store.CreateMetaTables();
     return store;
 }