SOQL in Apex
SOQL in Apex is Salesforce Object Query Language. What it actually means: Where can we write SOQL? For starters, we […]
Read MoreLoops in Apex
Loops in Apex are used to execute a piece of code multiple times. There are five types of loops in […]
Read MoreLists in Apex
The topic of lists in Apex is highly bound to other concepts such as loops, SOQL, DML and triggers. We’ll […]
Read MoreIf/Else in Apex
If you look at our Apex code, you’ll notice that it’s been quite linear so far. There’s always only one […]
Read MoresObjects in Apex
Now that we know everything about objects, classes and methods, it’s time to get to know a special type of […]
Read MoreMethods in Apex
Methods are key parts of the Salesforce Development. They are the difference why we even bother with Apex. There are two types of methods in Apex...
Read More