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. SOQL means salesforce Object Query Language and SOSL means salesforce  object search language, APEX language syntax is similar to Java programming language, it will compile and execute code using Apex cloud compiler. Salesforce provide developer option to create APEX class and execute option to execute APEX Code. Syntax of Apex public class Classname{    public static retuntype Methodname() {   }   public retuntype Methodname() {   } } Execute Apex code:- Classname ref = new Classname(); ref.methodname(); Static method means it will store data under class memory that's why it would be call by Classname. Instance ...

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)         {         ...