Interface IDynamoQueryClause
Interface identifying a DynamoDB query clause for mixed records.
Namespace: LambdaSharp.DynamoDB.Native
Assembly: LambdaSharp.DynamoDB.Native.dll
Syntax
public interface IDynamoQueryClause
Methods
WithTypeFilter(Type)
Limit results to record with the specified type.
Declaration
IDynamoQueryClause WithTypeFilter(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | Type filter to add. |
Returns
Type | Description |
---|---|
IDynamo |
WithTypeFilter<T>()
Limit results to record with the specified type.
Declaration
virtual IDynamoQueryClause WithTypeFilter<T>()
Returns
Type | Description |
---|---|
IDynamo |
Type Parameters
Name | Description |
---|---|
T | Type to filter by. |