FSharp.AWS.DynamoDB icon indicating copy to clipboard operation
FSharp.AWS.DynamoDB copied to clipboard

F# wrapper API for AWS DynamoDB

Results 22 FSharp.AWS.DynamoDB issues
Sort by recently updated
recently updated
newest added

Triggered by https://github.com/SwensenSoftware/unquote/issues/169 - Add an explicit FSharp.Core dependency - Adjust inadvertent leak of `Dotnet.ReproducibleBuilds` into the package deps - Remove misleading inert superseded settings

I'm trying to figure out if there's any way to achieve the same end result as is given in the `Preventing overwrites of an existing attrubute` section from [here](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.UpdateExpressions.html#Expressions.UpdateExpressions.SET.PreventingAttributeOverwrites): ```...

From https://github.com/fsprojects/FSharp.AWS.DynamoDB/issues/59#issuecomment-1326297316 > Currently if we write to a table using the table context it will get automatically serialised with the internal picklers. > > Once this same data hits...

enhancement

Logging this as a placeholder - it's more of a nice to have than something that I'd be personally investing the time to execute on at present. In Equinox and...

I have a use case where I may need to scan a table for millions of items. I am unable to allocate an array that large. What I really want...

enhancement

For `ConditionCheckFailedException`, its [now possible](https://stackoverflow.com/a/76609239/11635) to have the exception include the content of the conflicting item in the same roundtrip, by setting `ReturnValuesOnConditionCheckFailure` flag in the request) The library should...

Been running into the `empty strings not supported by DynamoDB` error from [here](https://github.com/fsprojects/FSharp.AWS.DynamoDB/blob/master/src/FSharp.AWS.DynamoDB/Picklers/PrimitivePicklers.fs#L40) quite a bit. While it might be an indication of an underlying "issue" with the data, I'm...

enhancement

This is somewhat related to the caveat mentioned in the `TransactWriteItems` [section](https://github.com/fsprojects/FSharp.AWS.DynamoDB#transactwriteitems) regarding multi-table operations not being supported. For a single-table design this limitations also pops if there are multiple...

discussion

Hello, I have DynamoDB entries which hold a F# `Map` called values, with keys following a specific schema (`X+GUID`, where X is a string with letters and digits AND special...

bug

See discussion in #59 - there would be value in supporting transactional writes across multiple tables (or contexts in the case of multiple single-table contexts). Probably the main question here...

enhancement