SoC and the Apex Common Library Tutorial Series Part 6: The fflib_SObjectUnitOfWork Class
| |

SoC and the Apex Common Library Tutorial Series Part 6: The fflib_SObjectUnitOfWork Class

What is the fflib_SObjectUnitOfWork class? It is a foundation built to allow you to leverage the unit of work design pattern from within Salesforce. Basically this class is designed to hold your database operations (insert, update, etc) in memory until you are ready to do all of your database transactions in one big transaction. It…

SoC and the Apex Common Library Tutorial Series Part 5: The Unit of Work Pattern
| |

SoC and the Apex Common Library Tutorial Series Part 5: The Unit of Work Pattern

What is the Unit of Work Pattern (UOW) A Unit of Work, “Maintains a list of objects affected by a business transaction and coordinates the writing out of changes and the resolution of concurrency problems”. The goal of the unit of work pattern is to simplify DML in your code and only commit changes to…