Sign in Sign up
nuget

Data8.PowerPlatform.Dataverse.Client

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); }

nuget View on Nuget

Activity

Latest release
2y ago
Total releases
17
Cadence
~25 days
Last 12 months
0

Details

License
MIT
First release
Nov 09, 2021
Releases
Version Released
2.4.2 patch
2.4.1 patch
2.4.0 minor
2.3.2 patch
2.3.1 patch
2.3.0 minor
2.2.0 minor
2.1.1 patch
2.1.0 minor
2.0.2 patch
2.0.1 patch
2.0.0 major
1.0.0 major
0.2.2 patch
0.2.1 patch
0.2.0 minor
0.1.0 initial