public async Task TestCreateTables() { var dao = new FlattenedDocumentCassandraDao(); await dao.EstablishConnectionAsync(); await dao.CreateFlattenedDocumentTablesAsync(); }
public async Task EstablishSessionAsync() { if (ResilientSession == null) { var rs = new FlattenedDocumentCassandraDao(); await rs.EstablishConnectionAsync(); ResilientSession = rs; } }
private async Task CreateAndTruncateTables() { var dao = new FlattenedDocumentCassandraDao(); await dao.EstablishConnectionAsync(); await dao.CreateFlattenedDocumentTablesAsync(); await dao.TruncateTablesAsync(); }
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(); }