squirrel icon indicating copy to clipboard operation
squirrel copied to clipboard

feat: add arguments for From method in UpdateBuilder

Open Vypolor opened this issue 2 months ago • 0 comments

This PR adds a new argument to the From method in the UpdateBuilder structure in Squirrel. Currently, using the UPDATE ... FROM ... VALUES construction is only possible by manually appending SQL fragments with the Suffix method. This approach breaks the builder pattern and forces developers to continue the query construction using Suffix instead of other squirrel methods.

With this change, developers will be able to use the From method directly in UpdateBuilder, allowing full query composition through the standard Squirrel API.

Vypolor avatar Oct 27 '25 12:10 Vypolor