Exemplo n.º 1
0
 public static Task <string> CreateTableIfNotExistAsync <T>(this IAmazonDynamoDB client, string tablePrefix)
     where T : class
 {
     return(client.CreateTableIfNotExistAsync(typeof(T), tablePrefix));
 }