Executes the specified select command against SimpleDB using advanced options provided by the command object without an item type generic parameter.

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

Syntax

C#
public SelectResults<PropertyValues> SelectAttributes(
	SelectCommand command
)
Visual Basic
Public Function SelectAttributes ( _
	command As SelectCommand _
) As SelectResults(Of PropertyValues)
Visual C++
public:
virtual SelectResults<PropertyValues^>^ SelectAttributes(
	SelectCommand^ command
) sealed

Parameters

command
Type: Simol..::..SelectCommand
The command to execute.

Return Value

The results returned by the select command or an empty results list if no items were returned.

Implements

ISimol..::..SelectAttributes(SelectCommand)

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionIf the command parameter is null
System..::..ArgumentExceptionIf the command parameter has already been cancelled
AmazonSimpleDBExceptionIf the request to SimpleDB fails for any reason
Simol..::..SimolDataExceptionIf there are any property value conversion failures
Simol..::..SimolConfigurationExceptionIf no valid SimpleDB mapping can be configured for the requested item type

See Also