コード例 #1
0
 public SQLiteTagStore(ISQLiteDB db)
 {
     connection = db.GetConnection();
     connection.CreateTableAsync <Tag>();
 }
コード例 #2
0
 public SQLiteWireframeStore(ISQLiteDB db)
 {
     connection = db.GetConnection();
     connection.CreateTableAsync <Wireframe>();
 }
コード例 #3
0
 public SQLitePicturePosts(ISQLiteDB db)
 {
     _connection = db.GetConnection();
     _connection.CreateTableAsync <PicturePost>();
 }