我正在使用此代码将数据插入我的DynamoDB。
public async Task Add(T data)
{
try
{
try
{
await dynamoDBContext.SaveAsync<T>(data);
}
catch (AmazonDynamoDBException dbException)
{
throw new Exception(dbException.Message);
}
catch (AmazonServiceException dbSvcException)
{
throw new Exception(dbSvcException.Message);
}
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
当我调试时,没有例外。但是当我检查数据库时,有时记录存在,有时不存在。有人遇到过这个问题吗?