Dynamics 365 – Create, Retrieve, Update, Delete Console App
In this post, we will create a console app that performs a CRUD operation on Dynamics 365. In Visual Studio, create a new Console App: You will see: Add Microsoft.CrmSdk.Xrm.Tooling.CoreAssembly using NuGet: Code: [sourcecode language=”CSharp”] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Xrm.Tooling.Connector; using Microsoft.Xrm.Sdk; using Microsoft.Crm.Sdk.Messages; using Microsoft.Xrm.Sdk.Query; namespace Carl.Dynamics365CRUD { class Program { static void Main(string[] args) { try { var connectionString = @"AuthType … Continue reading Dynamics 365 – Create, Retrieve, Update, Delete Console App