the value of the relation's PK to filter by
an AA, mapping column name to the new value to be set for the column
optionally send this query async
1 Connection c; // en established connection 2 struct User { @PK int id; int x; string y } 3 c.update!User(1, [ 4 "x": Value(2), 5 "y": Value("Hello there")]);
Similar to above update, but instead of acceptign a filter and and update string, always filters by the PK and updates with absolute values from the updates AA.