Tagged: salesforce.com

SOQL Queries in Apex 0

SOQL Queries in Apex

Salesforce developers rely heavily on SOQL queries in Apex to interact with database. Whether you are a complete newbie or seasoned coder, mastering SOQL is crucial for building efficient and scalable applications. Syntax of...

SOQL Functions with Examples 0

SOQL Functions with Examples

SOQL helps developers retrieve data from Salesforce objects in a powerful and structured way. One of the most important features in SOQL is its support for functions which help you manipulate, analyze and summarize...

SObject Methods 0

Working with sObject

SObject refers to any object that can stored in Lightning Platform Database. In Salesforce, objects function similarly to tables in a database, with fields representing columns and records representing rows within these objects.

Difference between Lightning Aura and LWC 0

Getting Started with LWC

LWC is a modern programming model to build lightning components in salesforce platform. It is a framework for building web components using modern web standards like JavaScript, HTML and CSS. These web components are reusable building blocks encapsulated in their own DOM structure.

Collections in Apex from My-Salesforce-Stories 0

Collections in Apex

There are three main types of collections List, Set, Map. These collections provide powerful tools for working with data in apex. They allows developers to efficiently manage and manipulate data within their application.

0

Primitive Data Types and Typecasting

It is a case-insensitive language to avoid confusion with SOQL and SOSL queries as they are case-insensitive. There are 12 primitive data types in apex. As follows: Blob, Boolean, Date, DateTime, Double, Decimal, Integer, ID, Object, Long, String, Time.

Difference between Apex and Java 0

Getting Started with Apex

Apex is strongly typed, object oriented programming language. It is a proprietary language developed by salesforce. It allows us to write code on force.com platform.