Overview
Assumptions
- Small Selector Classes - The selector class should be small and contains ONLY query base configuration (fields, sharing settings) and very generic methods (
byId
,byRecordType
). Why?- Huge classes are hard to manage.
- A lot of merge conflicts.
- Problems with methods naming.
- Build SOQL inline in a place of need - Business-specific SOQLs should be built inline via
SOQL
builder in a place of need.- Most of the queries on the project are case-specific and are not generic. There is no need to keep them in the Selector class.
- Build SOQL dynamically via builder - Developers should be able to adjust queries with specific fields, conditions, and other SOQL clauses.
- Do not spend time on selector methods naming - It can be difficult to find a proper name for a method that builds a query. The selector class contains methods like
selectByFieldAAndFieldBWithDescOrder
. It can be avoided by building SOQL inline in a place of need. - Control FLS and sharing settings - Selector should allow to control Field Level Security and sharing settings by simple methods like
.systemMode()
,.withSharing()
,.withoutSharing()
. - Auto binding - The selector should be able to bind variables dynamically without additional effort from the developer side.
- Mock results in Unit Tests - The selector should allow mocking data in unit tests.
Concepts
SOQL Library consist of:
SOQL Builder
SOQL Selector
SOQL Builder
SOQL Builder allows to build query dynamically and execute it.
// SELECT Id, Name, Industry FROM Account
List<Account> accounts = SOQL.of(Account.SObjectType)
.with(Account.Id, Account.Name, Account.Industry)
.toList();
SOQL Selector
A selector layer contains code responsible for querying records from the database. Although you can place SOQL queries in other layers, a few things can happen as the complexity of your code grows. ~ Salesforce
SOQL Lib provides the whole new concept for Selectors usage.
Old Approach
FFLIB Selector concept assumes that all queries should be stored in the Selector class.
- To avoid duplicates.
- One place to manage all queries.
Issues:
- One-time queries (like aggregation, case specific) added to Selector.
- Huge class with a lot of methods.
- Queries are difficult to reuse.
- Similar methods with small differences like limit, offset.
- Problem with naming methods.
- Merge conflicts.
New Approach
The SOQL Lib has a slightly different approach.
Assumption:
Most of the SOQLs on the project are one-time queries executed for specific business case.
Solution:
- Small Selector Classes - Selector class should be small and contains ONLY query base configuration (fields, sharing settings) and very generic methods (
byId
,byRecordType
) - Build SOQL inline in a place of need - Business-specific SOQLs should be built inline via the SOQL builder in the place of need.
- Do not spend time on selector methods naming - Queries are created inline, so there's no need to find a name.
- Keep Selector Strengths - Set default Selector configuration (default fields, sharing settings), keep generic methods.