Skip to main content

Posts

Showing posts from December, 2023

APEX Introduction

 APEX Introduction It is Object oriented programming language that is used to provide custom code to create business logic and database operation. APEX is also used to create salesforce triggers that will work automatically , before and after database operation(Insert, Update, Delete). Apex provide SOQL and SOSL to manage database operation. 📘 Apex Arrays & Collections – Complete Tutorial 1. Introduction In Apex , data structures are very important because Salesforce apps often deal with records, lists, and sets of data . Apex provides Collections to store and manipulate groups of values or objects. 👉 Collections in Apex: List (like an Array in Java/C#) Set Map ⚡ Note: Unlike Java/C#, there is no fixed-length array in Apex. Instead, List<T> is used as a dynamic array. 2. Arrays in Apex (List<T>) What is an Array? An Array (or List) is an ordered collection of elements, indexed starting at 0 . You can store primitive types (Integer, String, Boolean) ,...

Most important Salesforce Admin Interview Question?

   Salesforce Admin Interview Questions Here is a list of some Top 55 Salesforce Admin Interview Questions: What is cloud Computing? What is Paas, Saas, Iaas? What is Sandbox and the Type of Sandbox in Salesforce? What is Object in Salesforce? What are the different types of object relations in Salesforce. What is a Master–Detail relationship in Salesforce? What is a junction object in Salesforce? How many LR(lookup relationship) fields can be created in an object? What is a Roll-up Summary field How many way to create What is a Roll-up Summary field What is field dependency What is the difference between role and profile What are Permission sets? What is use of muting permission set in permission set group How many ways we can share a record? What are Audit Fields in Salesforce? What is an Audit trail? What is a Queue in Salesforce? What is a Public Group Difference between static and dynamic dashboards in Salesforce? What are the different types of reports available in Sales...

How to upload file in ASP.NET Core MVC, File uploading concept in .net core MVC

 How to  upload file in  ASP.NET Core MVC, File uploading concept in .NET  core MVC:- It is used to upload any external content such as audio, video, text and doc file under project. Microsoft provide IFormFile class to handle file uploading operation Step by Step Implementation 1)  Create Project 2)  Create FileUpload.cs class under Models folder public class FileUpload     {         public IFormFile FormFile { set; get; }     } 3)  Create FileUploadingController Class using Microsoft.AspNetCore.Mvc; using CodeFirstExample.Models; using Microsoft.Extensions.Hosting.Internal; namespace CodeFirstExample.Controllers {     public class FileUploadController : Controller     {         private IWebHostEnvironment Environment;         public FileUploadController(IWebHostEnvironment _environment)         {         ...