Found 16 packages
This package contains the .net core Dataverse ServiceClient. Used to connect to Microsoft Dataverse. This Package has been authored by the Microsoft Dataverse SDK team.
This package contains a set of Dynamics 365 specific extensions, used with the Dataverse ServiceClient. This Package has been authored by the Microsoft Dataverse SDK team.
Provides a WS-Trust compatible client for connecting to on-premise IFD instances of Dynamics 365 from .NET Core. This package builds on top of Microsoft.PowerPlatform.Dataverse.Client and offers an alternative IOrganizationService implementation using WS-Trust. This allows you to connect using the URL of the organization service, username and password without any additional configuration. Because this OnPremiseClient implements the same IOrganizationService as the standard ServiceClient implementation your code can work with either as shown in the sample code below. using Data8.PowerPlatform.Dataverse.Client; using Microsoft.PowerPlatform.Dataverse.Client; using Microsoft.Xrm.Sdk; var onPrem = new OnPremiseClient("https://org.crm.contoso.com/XRMServices/2011/Organization.svc", "AD\\username", "password!"); var online = new ServiceClient("AuthType=ClientSecret;Url=https://contoso.crm.dynamics.com;ClientId=637C79F7-AE71-4E9A-BD5B-1EC5EC9F397A;ClientSecret=p1UiydoIWwUH5AdMbiVBOrEYn8t4RXud"); CreateRecord(onPrem); CreateRecord(online); void CreateRecord(IOrganizationService svc) { var entity = new Entity("account") { ["name"] = "Data8" }; entity.Id = svc.Create(entity); }
This package contains the preview of the .net core Dynamics Messages Assembly. Used to issue commands to Dynamics Applications Installed on Microsoft Dataverse. This Package has been authored by the Microsoft Dataverse SDK team.
This package contains the following official Microsoft assemblies and has been authored by the Microsoft Common Data Service SDK team. - Dynamics 365 Configuration Migration Tool
This package contains the following official Microsoft assemblies and has been authored by the Microsoft Common Data Service SDK team. - Dynamics 365 Package Deployer
A LINQ to FetchXML query provider which supports many scenarios unsupported by the Dynamics SDK's implementation. Along with OAuth organization service.
This package contains the official Microsoft.Crm.Outlook.dll assembly and has been authored by the Microsoft Common Data Service SDK team.
This package contains a auth extention for the Dataverse ServiceClient. This extention add support for authentication use the Azure.Core Library. This support the "DefaultAzureCredential" flow. This Package has been authored by the Microsoft Dataverse SDK team.
Reduces the number of time new connections to a dataverse instance needs to be opened introducing the concept of connection pooling to ServiceClient (Microsoft.PowerPlatform.Dataverse.Client).
Client libraries to interact with the Dynamic 365 Customer Insights APIs.
Dataverse ServiceClient Instrumentation for OpenTelemetry .NET
MultiplexingServiceClient is a .NET library designed to optimize and manage multiple connections to Microsoft Dataverse environments. It supports executing various types of requests (CreateMultiple, UpdateMultiple, ExecuteMultiple) in parallel, ensuring efficient use of resources and improved performance.
Dataverse Model Builder is used to generate classes and API contracts from Dataverse Metadata
Login Control Tester program. Wraps the Login control to allow for isolated testing of login process. This Package has been authored by the Microsoft Dataverse SDK team.
This driver helps you connect to Dataverse (previous known as CDS) API and query or execute actions against the API. This driver utilises the PowerPlatform-DataverseServiceClient package to generate the early bound classes. The authentication methods supported are Azure, OAuth, Client Secret and Certificate Thumbprint.