⚠️ This is a fork of the amazing Dataverse-LINQPad-Driver done by rajyraman (Natraj Yegnaraman).
This new driver is a dynamic driver that uses Microsoft.PowerPlatform.Dataverse.Client assemblies which target .NET 5 and newer. The Tables
(Entities
) and associated metadata are regenerated everytime LINQPad is opened, so that you don't need to worry about keeping Dataverse Metadata and LINQPad context in sync.
You can install the driver from LINQPad using NuGet.
From here, search for "Dataverse" and select the driver named NY.Dataverse.LINQPadDrive
. Now press Install.
Microsoft.PowerPlatform.Dataverse.Client supports four kinds of authentication:
- Application Id/Secret
- Application Id/Certificate Thumbprint
- OAuth
- Azure
After installing the driver from nuget, you can start using this driver by clicking Add Connection link on LINQPad. You will be presented with the dialog below.
The easiest way to connect is to use the credentials you already have in Azure CLI. You can get the currently signed on user in Az CLI using the command below.
az ad signed-in-user show --query "{login: userPrincipalName, name: displayName}" --output table
This should display something like below.
If you choose Azure connection method, you only need to enter the environment URL e.g. https://env.crm.dynamics.com. If you choose any other connection method, you have to enter the appropriate details i.e. AppId/Secret, Certification Thumbprint etc.
After entering the required details on the connection dialog, the context would be generated and you should see all the tables on the left hand side.
You can either write a new LINQ query on the query window, or right click on the table name, to see some quick suggestions.
LINQPad has a whole bunch of samples on how to craft your LINQ queries, in case you don't know how to query in LINQ and want to learn the syntax. LINQ is very similar to SQL in syntax, but more powerful than SQL.
I have also given five samples that illustrate the power of LINQPad and how you can use the driver to query Dataverse.
I highly recommend that you purchase LINQPad Premium, as you get both Intellisense and Debugging capability. It is great for quick PoCs and experimentation. I currently get a free Premium license as a Microsoft MVP, but I had paid for Premium license even before I became a Microsoft MVP.
You can use DataverseClient property to access the ServiceClient object. Once you have access to this object you can then basically do any operations that are supported by the client.
If you click on the SQL tab, you can see both WebAPI URL and FetchXML that correspond to the LINQ query that you ran.
- Mark Carrington for FetchXML to WebAPI URL conversion logic
- Kenichiro Nakamura for writing the original CRM driver for LINQPad 4.
- Gayan Perara for CRM Code Generator, which was the first one to use T4 templates for generating early bound classes
- Joe Albahari for creating LINQPad and providing Microsoft MVPs with Premium license
- People who helped me with testing - Tae Rim Han