You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error=$"Item with Partition Key '{model.PartitionKey.Value?.Value}'{(model.SortKey!=null?$" and Sort Key '{model.SortKey.Value?.Value}'":"")} not found"
returnHandleException(newAmazonDynamoDBException($"Failed to delete old item after creating new one. Both items may be present in the DB. Error message: {ex.Message}",ex));
/// Initializes a new instance of <see cref="DynamoDBItem"/> and sets the collection of attributes.
49
+
/// </summary>
50
+
/// <param name="attributes">The collection of attributes that the <see cref="DynamoDBItem"/> should contain.</param>
51
+
/// <remarks>
52
+
/// The difference between initializing an instance using this method versus the <see cref="DynamoDBItem(IDictionary{string, AttributeValue})"/> constructor,
53
+
/// is that the constructor creates a shallow copy of the dictionary, whereas this method uses the exact same dictionary reference.
0 commit comments