Show / Hide Table of Contents

Interface IDynamoTableBatchGetItemsGetItem<TRecord>

Interface to specify a typed GetItem operation for BatchGetItems with mixed record types.

Namespace: LambdaSharp.DynamoDB.Native.Operations
Assembly: LambdaSharp.DynamoDB.Native.dll
Syntax
public interface IDynamoTableBatchGetItemsGetItem<TRecord>
    where TRecord : class
Type Parameters
Name Description
TRecord

The record type.

Methods

End()

End specification of the GetItem operation for BatchGetItems.

Declaration
IDynamoTableBatchGetItems End()
Returns
Type Description
IDynamoTableBatchGetItems

Get<T>(Expression<Func<TRecord, T>>)

Selects a record property to fetch.

Declaration
IDynamoTableBatchGetItemsGetItem<TRecord> Get<T>(Expression<Func<TRecord, T>> attribute)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<TRecord, T>> attribute

A lambda expression that returns the record property.

Returns
Type Description
IDynamoTableBatchGetItemsGetItem<TRecord>
Type Parameters
Name Description
T

The property type.

In This Article
Back to top Generated by DocFX