Hello friends, Here we will learn What is Trigger Factory in Salesforce and How to implement it? Trigger Factory is a pattern that avoids multiple bad practices such as multiple triggers on an object and Repetitive SOQL queries that can exceed governer limit. What is Trigger Factory in Salesforce and How to implement it? Trigger Factory…
Table Variable in SQL Server
Hello friends, In this tutorial, we are going to learn Table Variable in SQL Server. Table variable was introduced with SQL Server 2000 as an alternate for Temporary tables. We can use Table Variable to store a set of records temporally. Table Variable in SQL Server: We can use Table Variable to store a set of…
How to handle multiple submit buttons on single view in ASP.NET MVC
Hi friends, In this tutorial, we are going to see how to handle multiple submit buttons on a single view in ASP.NET MVC. If you are working on a Web Application then this is a very common situation that you need to handle multiple submit button on a single page. Let’s see this using an…
Select Multiple values using lightning:dualListbox in Lightning Component Salesforce
Hello Friends, In this tutorial, We are going to learn about lightning:dualListbox widget in the lightning component. The lightning:dualListbox allows you to select one or more options from a list of available option. We will see how to use lightning:dualListbox in lightning component salesforce. lightning:dualListbox in Lightning component. lightning:dualListbox provides two side-by-side list box. The…
User Defined Function to Calculate Age from Date Of Birth in SQL Server
Hello Friends, In this tutorial I will show you a simple User Defined Function to calculate Age from Date Of Birth in SQL Server. User Defined Function to Calculate Age from Date Of Birth in SQL Server: CREATE FUNCTION udfGetAge ( @date datetime ) RETURNS VARCHAR(100) AS BEGIN DECLARE @tmpdate datetime, @years int, @months int,…