Mytutorialrack

Blogs

Home - apex programming

dynamic soql
Salesforce

Dynamic SOQL in Salesforce: A Comprehensive Guide with Examples

Salesforce Object Query Language (SOQL) is used to search data in your salesforceOrg. SOQL is designed specifically for Salesforce data. Dynamic SOQL refers to the ability to create SOQL queries at runtime as strings with Apex code. This means you can create queries dynamically based on various conditions such as user inputs while in static

Read More »
Salesforce

Different types of access modifiers available in Apex

In this blog post,we will take a look at different types of access modifiers which are available in Apex programming. Apex has 4 different types of access modifiers.  Public  Private  Protected  Global Let’s discuss them one by one. 1) Global: The method or variable with global access modifier can be used by any apex code

Read More »
apex programming
Uncategorized

Basics of Apex Programming

In this blog post, we will cover some basics related to apex programming. We will learn about datatypes, Variables and constants. What is Apex class? A class is a template or blueprint from which objects are created. An object is an instance of a class. Let’s talk in detail about this class. Think of a

Read More »
apex programming
Salesforce

What is Apex Programming?

In this blog-post series, we will learn about apex programming. Apex is official programming language for Salesforce Developers. It is strongly typed object-oriented programming language. The syntax of apex is very similar to Java programming language and for that reason it is also called as sister language of Java. Features of Apex: Apex is a

Read More »