Create on console application, read the .csv format excel and create records in CRM
Create on console application, read the .csv format excel and create records in CRM ? STEP 1 : Open Visual studio and create a console app and name it as ConsoleConnectCRMwithCSV STEP 2 : Add Nuget packages Search xrm.sdk then select Microsoft.Crm.Sdk.Xrm.Tooling.Core assembly and install Next search LINQtoCSV and install Next search Microsoft.PowerPlatform.Dataverse.Client and install so Install all these libraries in ConsoleConnectCRMwithCSV . name the class as CreateContact then the file name is CreateContact.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using LINQtoCSV; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Tooling.Connector; using Microsoft.Crm.Sdk.Messages; using Microsoft.Rest; using Microsoft.PowerPlatform.Dataverse.Client; namespace ConsoleConnectCRMwithCSV { internal class CreateContact ...