コード例 #1
0
        public async Task <bool> ClearAsync <T>() where T : new()
        {
            await GetConnection.DropTableAsync <T>();

            await GetConnection.CreateTableAsync <T>();

            return(true);
        }