File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/FSharp.DynamoDB/Expression Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ ### 0.0.14-alpha
2+ * Implement update expression combiners.
3+
14### 0.0.13-alpha
25* Implement update expression combiners.
36
Original file line number Diff line number Diff line change @@ -96,8 +96,10 @@ type UpdateExpression<'TRecord> internal (updateOps : UpdateOperations) =
9696
9797 override __.GetHashCode () = hash updateOps.UpdateOps
9898
99+ static member (&&&) ( this : UpdateExpression < 'TRecord >, that : UpdateExpression < 'TRecord >) =
100+ UpdateExpression.Combine( this, that)
99101
100- type UpdateExpression =
102+ and UpdateExpression =
101103 /// Combines a collection of compatible update expressions into a single expression.
102104 static member Combine ( [<ParamArray>] exprs : UpdateExpression < 'TRecord > []) =
103105 match exprs with
You can’t perform that action at this time.
0 commit comments