Creates a strongly-typed BatchGet object, allowing a batch-get operation against DynamoDB.
CreateBatchGet(DynamoDBOperationConfig)Creates a strongly-typed BatchGet object, allowing a batch-get operation against DynamoDB.
CreateBatchWrite()Creates a strongly-typed BatchWrite object, allowing a batch-write operation against DynamoDB.
CreateBatchWrite(DynamoDBOperationConfig)Creates a strongly-typed BatchWrite object, allowing a batch-write operation against DynamoDB.
CreateBatchWrite(Type)Creates a strongly-typed BatchWrite object, allowing a batch-write operation against DynamoDB. This is intended for use only when the valuesType is not known at compile-time, for example, when hooking into EF's ChangeTracker to record audit logs from EF into DynamoDB. In scenarios when the valuesType is known at compile-time, the Amazon.DynamoDBv2.DataModel.DynamoDBContext.CreateBatchWrite``1 method is generally preferred.
CreateBatchWrite(Type, DynamoDBOperationConfig)Creates a strongly-typed BatchWrite object, allowing a batch-write operation against DynamoDB. This is intended for use only when the valuesType is not known at compile-time, for example, when hooking into EF's ChangeTracker to record audit logs from EF into DynamoDB. In scenarios when the valuesType is known at compile-time, the Amazon.DynamoDBv2.DataModel.DynamoDBContext.CreateBatchWrite``1(Amazon.DynamoDBv2.DataModel.DynamoDBOperationConfig) method is generally preferred.
CreateMultiTableBatchGet(BatchGet[])Creates a MultiTableBatchGet object, composed of multiple individual BatchGet objects.
CreateMultiTableBatchWrite(BatchWrite[])Creates a MultiTableBatchWrite object, composed of multiple individual BatchWrite objects.
CreateMultiTableTransactGet(TransactGet[])Creates a MultiTableTransactGet object, composed of multiple individual TransactGet objects.
CreateMultiTableTransactWrite(TransactWrite[])Creates a MultiTableTransactWrite object, composed of multiple individual TransactWrite objects.
CreateTransactGet()Creates a strongly-typed TransactGet object, allowing a transactional get operation against DynamoDB.
CreateTransactGet(DynamoDBOperationConfig)Creates a strongly-typed TransactGet object, allowing a transactional get operation against DynamoDB.
CreateTransactWrite()Creates a strongly-typed TransactWrite object, allowing a transactional write operation against DynamoDB.
CreateTransactWrite(DynamoDBOperationConfig)Creates a strongly-typed TransactWrite object, allowing a transactional write operation against DynamoDB.
Delete(T)Deletes an item in DynamoDB corresponding to given object. Passed-in config overrides DynamoDBContextConfig on the context. If SkipVersionCheck=false, will check version of object before deleting. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
Delete(T, DynamoDBOperationConfig)Deletes an item in DynamoDB corresponding to given object. Passed-in config overrides DynamoDBContextConfig on the context. If SkipVersionCheck=false, will check version of object before deleting. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
Delete(object)Deletes an item in DynamoDB corresponding to a given hash-and-range primary key. No version check is done prior to delete. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
Delete(object, DynamoDBOperationConfig)Deletes an item in DynamoDB corresponding to a given hash-and-range primary key. No version check is done prior to delete. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
Delete(object, object)Deletes an item in DynamoDB corresponding to a given hash-and-range primary key. No version check is done prior to delete. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
Delete(object, object, DynamoDBOperationConfig)Deletes an item in DynamoDB corresponding to a given hash-and-range primary key. No version check is done prior to delete. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
DeleteAsync(T, CancellationToken)Initiates the asynchronous execution of the Delete operation.
DeleteAsync(T, DynamoDBOperationConfig, CancellationToken)Initiates the asynchronous execution of the Delete operation.
DeleteAsync(object, CancellationToken)Initiates the asynchronous execution of the Delete operation.
DeleteAsync(object, DynamoDBOperationConfig, CancellationToken)Initiates the asynchronous execution of the Delete operation.
DeleteAsync(object, object, CancellationToken)Initiates the asynchronous execution of the Delete operation.
DeleteAsync(object, object, DynamoDBOperationConfig, CancellationToken)Initiates the asynchronous execution of the Delete operation.
Dispose()Disposes of all managed and unmanaged resources.
ExecuteBatchGet(BatchGet[])Issues a batch-get request with multiple batches. Results are stored in the individual batches.
ExecuteBatchGetAsync(BatchGet[])Issues a batch-get request with multiple batches. Results are stored in the individual batches.
ExecuteBatchGetAsync(BatchGet[], CancellationToken)Issues a batch-get request with multiple batches. Results are stored in the individual batches.
ExecuteBatchWrite(BatchWrite[])Issues a batch-write request with multiple batches.
ExecuteBatchWriteAsync(BatchWrite[], CancellationToken)Issues a batch-write request with multiple batches.
ExecuteTransactGet(TransactGet[])Issues a transactional get request with multiple TransactGet objects. Results are stored in the individual TransactGet objects.
ExecuteTransactGetAsync(TransactGet[], CancellationToken)Issues a transactional get request with multiple TransactGet objects. Results are stored in the individual TransactGet objects.
ExecuteTransactWrite(TransactWrite[])Issues a transactional write request with multiple TransactWrite objects.
ExecuteTransactWriteAsync(TransactWrite[], CancellationToken)Issues a transactional write request with multiple TransactWrite objects.
FromDocument(Document)Deserializes a document to an instance of type T.
FromDocument(Document, DynamoDBOperationConfig)Deserializes a document to an instance of type T.
FromDocuments(IEnumerable<Document>)Deserializes a collections of documents to a collection of instances of type T.
FromDocuments(IEnumerable<Document>, DynamoDBOperationConfig)Deserializes a collections of documents to a collection of instances of type T.
FromQuery(QueryOperationConfig)Executes a Query operation against DynamoDB, finding items that match the specified conditions.
FromQuery(QueryOperationConfig, DynamoDBOperationConfig)Executes a Query operation against DynamoDB, finding items that match the specified conditions.
FromQueryAsync(QueryOperationConfig, DynamoDBOperationConfig)Configures an async Query operation against DynamoDB, finding items that match the specified conditions.
FromScan(ScanOperationConfig, DynamoDBOperationConfig)Executes a Scan operation against DynamoDB, finding items that match the specified conditions.
FromScanAsync(ScanOperationConfig, DynamoDBOperationConfig)Configures an async Scan operation against DynamoDB, finding items that match the specified conditions.
GetTargetTable(DynamoDBOperationConfig)Retrieves the target table for the specified type
Load(object)Loads an object from DynamoDB for the given hash key.
Load(object, DynamoDBOperationConfig)Loads an object from DynamoDB for the given hash key and using the given config.
Load(object, object)Loads an object from DynamoDB for the given hash-and-range primary key.
Load(object, object, DynamoDBOperationConfig)Loads an object from DynamoDB for the given hash-and-range primary key and using the given config.
Load(T, DynamoDBOperationConfig)Loads an object from DynamoDB for the given key and using the given config.
LoadAsync(object, CancellationToken)Loads an object from DynamoDB for the given hash key.
LoadAsync(object, DynamoDBOperationConfig, CancellationToken)Loads an object from DynamoDB for the given hash key and using the given config.
LoadAsync(object, object, CancellationToken)Loads an object from DynamoDB for the given hash-and-range primary key.
LoadAsync(object, object, DynamoDBOperationConfig, CancellationToken)Loads an object from DynamoDB for the given hash-and-range primary key and using the given config.
LoadAsync(T, CancellationToken)Loads an object from DynamoDB for the given key.
LoadAsync(T, DynamoDBOperationConfig, CancellationToken)Loads an object from DynamoDB for the given key and using the given config.
Query(object)Executes a Query operation against DynamoDB, finding items that match the specified hash primary key.
Query(object, DynamoDBOperationConfig)Executes a Query operation against DynamoDB, finding items that match the specified hash primary key.
Query(object, QueryOperator, Object[])Executes a Query operation against DynamoDB, finding items that match the specified range element condition for a hash-and-range primary key.
Query(object, QueryOperator, IEnumerable<Object>, DynamoDBOperationConfig)Executes a Query operation against DynamoDB, finding items that match the specified range element condition for a hash-and-range primary key.
QueryAsync(object, DynamoDBOperationConfig)Configures an async Query operation against DynamoDB, finding items that match the specified hash primary key.
QueryAsync(object, QueryOperator, IEnumerable<Object>, DynamoDBOperationConfig)Configures an async Query operation against DynamoDB, finding items that match the specified range element condition for a hash-and-range primary key.
RegisterTableDefinition(Table) Save(T, DynamoDBOperationConfig)Saves an object to DynamoDB using passed-in configs. Passed-in config overrides DynamoDBContextConfig on the context. Type must be marked up with DynamoDBTableAttribute and at least one public field/property with DynamoDBHashKeyAttribute.
SaveAsync(T, CancellationToken)Initiates the asynchronous execution of the Save operation. Amazon.DynamoDBv2.DataModel.DynamoDBContext.Save``1(``0,Amazon.DynamoDBv2.DataModel.DynamoDBOperationConfig)
SaveAsync(T, DynamoDBOperationConfig, CancellationToken)Initiates the asynchronous execution of the Save operation. Amazon.DynamoDBv2.DataModel.DynamoDBContext.Save``1(``0,Amazon.DynamoDBv2.DataModel.DynamoDBOperationConfig)
SaveAsync(Type, object, CancellationToken)Initiates the asynchronous execution of the Save operation. Amazon.DynamoDBv2.DataModel.DynamoDBContext.Save``1(``0,Amazon.DynamoDBv2.DataModel.DynamoDBOperationConfig)
SaveAsync(Type, object, DynamoDBOperationConfig, CancellationToken)Initiates the asynchronous execution of the Save operation. Amazon.DynamoDBv2.DataModel.DynamoDBContext.Save``1(``0,Amazon.DynamoDBv2.DataModel.DynamoDBOperationConfig)
Scan(ScanCondition[])Executes a Scan operation against DynamoDB, finding items that match the specified conditions.
Scan(IEnumerable<ScanCondition>, DynamoDBOperationConfig)Executes a Scan operation against DynamoDB, finding items that match the specified conditions.
ScanAsync(IEnumerable<ScanCondition>, DynamoDBOperationConfig)Configures an async Scan operation against DynamoDB, finding items that match the specified conditions.
ToDocument(T)Serializes an object to a Document.
ToDocument(T, DynamoDBOperationConfig)Serializes an object to a Document.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4