Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
How To Reset Your MariaDB-10.2 Root Password on Ubuntu 20.04
Note: This tutorial will work only for resetting the MariaDB root password, not for the MySQL server. Introduction If you forget the root password of the MariaDB database in Ubuntu, you can still regain the access and reset it if
How to create a Salesforce Scratch Org
Scratch org is a disposable and source-driven deployment of Salesforce metadata and code which is made for developers (developing specific modules) and for automation that is continuous integration or continuous development. Scratch org is a configurable org/sandbox which allows the
OAuth 2.0 Authorization Code Grant Type
The Authorization Code Grant Type is perhaps the foremost common of the OAuth 2.0 grant types that you’ll encounter. Both web apps and native apps can use it to get the access token after a user authorizes the app. What
How to exclude source when Syncing or Converting – DX
While Syncing the metadata files between your local system and a target/Scratch org, you often want to exclude some of the source files. Similarly, you often have files to exclude when converting the source to the Salesforce DX project format.
How to Apply custom pagination using devextreme
The devextreme already provides pagination features as we can see in the above image. If we want to go directly to page 155, we can go to that specific page by clicking on the page to page. This is a
How “this” is used in callback function in javascript
The “this” keyword of JavaScript causes confusion for people, who start to use Javascript language and mainly for those who start after using the other languages. Here the main question is how to use “this” in the right way in
Mvc c# : Exclude Enum values from DropDownListFor Html helper on .cshtml Page
Suppose we have some enum type in c# as follows : enum Performance { None=-1, Dissatisfied=0, Below Average=1, Average =2, Good = 3, Excellent=4, } Consider some employee model with a given enum type property. public class EmployeePerformance{ public int
Blazor in .NET
Blazor is a new DOT NET web framework for building client applications using C # / Razor and HTML-enabled browser with WebAssembly. It can simplify the process of building a single-page program (SPA) and at the same time enable full
‘System.LimitException: Too many query rows: 50001’ error in Salesforce
As we know, Apex runs in a multitenant environment so to restrict the runaway apex code/processes to acquire shared resources, the Apex runtime engine strictly enforces these governor limits. These governor limits count for each Apex transaction. For each execution