async Task DeleteTable()
    {
        #region DeleteDeduplicationTable

        var manager = new DedupeManager(sqlConnection, "DeduplicationTable");
        await manager.Drop();

        #endregion
    }
Ejemplo n.º 2
0
    async Task DeleteTable()
    {
        #region DeleteDeduplicationTable

        var queueManager = new DedupeManager(sqlConnection, "DeduplicationTable");
        await queueManager.Drop()
        .ConfigureAwait(false);

        #endregion
    }