データ挿入にdynamodbサービスを使用しています。しかし、ランダムに動作します。値を挿入することもあれば、ほとんどの場合スキップすることもあります。私は常に異なる主キーを送信していますが。私が使用している次のコード。ご意見をお聞かせください。ありがとうございました
Dictionary<string, AttributeValue> attributes = new Dictionary<string, AttributeValue>();
foreach (KeyValuePair<string, object> entry in paramDictioonary)
{
if (entry.Value == "")
{
attributes[entry.Key.ToString()] = new AttributeValue { S = "Empty Value" };
}
else
attributes[entry.Key.ToString()] = new AttributeValue { S = entry.Value.ToString() };
}
AmazonDynamoDBClient client = new AmazonDynamoDBClient();
{
PutItemRequest request = new PutItemRequest
{
TableName = "tableNamehere",
Item = attributes
};
client.PutItem(request);
}
助けてください。前もって感謝します
敬具。