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

Consider supporting auto-quotations in transaction arguments

Open eiriktsarpalis opened this issue 5 years ago • 0 comments

Since F# 4.0 it has been possible to do C# LINQ style automatic convertion of function arguments into quoted expression trees. In the case of FSharp.AWS.DynamoDB this means that an update expression can be written as follows:

table.UpdateItem(key, fun e -> { e with Value = e.Value + 1L })

without having to quote the lambda argument. It's a nice enhancement without introducing any breaking changes.

eiriktsarpalis avatar May 07 '20 13:05 eiriktsarpalis