예제 #1
0
 public static async Task GenerateTablesAsync(this ITableContext context, Authentication authentication, int tryCount)
 {
     for (var i = 0; i < tryCount; i++)
     {
         await context.GenerateTableAsync(authentication);
     }
 }