Exemple #1
0
        public async Task TestCreateTables()
        {
            var dao = new FlattenedDocumentCassandraDao();
            await dao.EstablishConnectionAsync();

            await dao.CreateFlattenedDocumentTablesAsync();
        }
Exemple #2
0
        private async Task CreateAndTruncateTables()
        {
            var dao = new FlattenedDocumentCassandraDao();
            await dao.EstablishConnectionAsync();

            await dao.CreateFlattenedDocumentTablesAsync();

            await dao.TruncateTablesAsync();
        }
Exemple #3
0
        public async Task TestTruncateTables()
        {
            var dao = new FlattenedDocumentCassandraDao();
            await dao.EstablishConnectionAsync();

            // create Tables, in case they don't exist
            await dao.CreateFlattenedDocumentTablesAsync();

            await dao.TruncateTablesAsync();
        }