Hello readers, In this tutorial, we are going to understand what is SelectMany Operator in LINQ with the example. SelectMany let you collapse a multidimensional sequence in a way that it would not require a second select() operator or loop. What is SelectMany Operator in LINQ C#: The SelectMany operator comes under the projection operators category…
Where Clause Filtering Operator in Linq
Hello friends, In this tutorial, you are going to understand what is Where clause Filtering operator in Linq. The Where operator is used to filter a collection based on the given criteria expression and return a new collection. Where Clause Filtering Operator in Linq: The Where operator is used to filter a collection based on…
What is Profile in Salesforce?
Hello readers, In this tutorial We are going to see What is Profile in Salesforce? A Profile is a group of settings and permissions which defines what a user can do in salesforce organization. A profile controls object privileges such as CRED(Create, Read, Edit, Delete). Create and managing profiles. What is Profile in Salesforce? A Profile is…
Singleton Design Pattern in .Net
Hi folks, In this tutorial, we are going to cover a very interesting topic Singleton Design Pattern. This is the most simple design pattern which comes the under Creational Pattern of Gang Of Four (GOF) design pattern in .net. A Single Design Pattern ensures that at any given point of time only one instance of…
How to Pass Parameter from one Visualforce Page to another
Hello friends, In this tutorial, You are going to see How to Pass Parameter from Visualforce Page to another. This is a very common situation for any web application to Pass data from one Page to another Page. How to Pass Parameter from One Visualforce Page to another Create a Visualforce Page called FistPage.vfp from where…