Salesforce Object Query Language(soql)
In This post we will about Salesforce Object Query Language . We used soql to fetch data from object in salesforce. SOQL ( Salesforce Object Query Language) To read a…
In This post we will about Salesforce Object Query Language . We used soql to fetch data from object in salesforce. SOQL ( Salesforce Object Query Language) To read a…
In This post we learn about System.runAs method. when and how to use System.runAs in our Apex Test Class. So before dive to the code. here is the short description…
Apex Data Manipulation Language: A data manipulation language (DML) is a computer programming language used for adding (inserting), deleting, and modifying (updating) data in a database. DML Manipulating Records with DML Create and modify…
Apex Collections: collections is a type of variable that can store multiple number of records. For example, List can store multiple number of Account object's records. Let us now have…