Puts multiple property values collections into SimpleDB.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public void PutAttributes<T>(
	List<PropertyValues> items
)
Visual Basic
Public Sub PutAttributes(Of T) ( _
	items As List(Of PropertyValues) _
)
Visual C++
public:
generic<typename T>
virtual void PutAttributes(
	List<PropertyValues^>^ items
) sealed

Parameters

items
Type: System.Collections.Generic..::..List<(Of <(<'PropertyValues>)>)>
Values for the items to store

Type Parameters

T
The item type

Implements

ISimol..::..PutAttributes<(Of <<'(T>)>>)(List<(Of <<'(PropertyValues>)>>))

Remarks

See Put<(Of <<'(T>)>>)(List<(Of <<'(T>)>>)) for details on batch-put behavior.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the items parameter is null
System..::..ArgumentExceptionIf the items parameter contains property values that are incompatible with the item type.
AmazonSimpleDBExceptionIf the request to SimpleDB fails for any reason
Simol..::..SimolDataExceptionIf the item values cannot be converted to SimpleDB attributes
Simol..::..SimolConfigurationExceptionIf no valid SimpleDB mapping can be configured for the specified item type

See Also