Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Bulk

One truth across all databases is single database operations are slow. Using operations that effect multiple rows simultaneously is a much faster way of interacting with the database.

This is unfortunate for ORMs since ORMs usually edit/create only one row at a time. Welds has a solution to this problem.

With welds you get Bulk Insert, Bulk Update, and Bulk Delete.



NOTE: bulk operations do NOT trigger model hooks