Other feature that would be useful is generating script that copy content of one table to another.
Sqlkata should generate something like this:
UPDATE dest
SET
dest.[Date]=src.[Date]
FROM [sourceBulkTable] src INNER JOIN [destinationTable] dest
ON src.[ID] = dest.[ID];