Data8.PowerPlatform.Dataverse.Client
0.2.0
See the version list below for details.
dotnet add package Data8.PowerPlatform.Dataverse.Client --version 0.2.0
NuGet\Install-Package Data8.PowerPlatform.Dataverse.Client -Version 0.2.0
<PackageReference Include="Data8.PowerPlatform.Dataverse.Client" Version="0.2.0" />
<PackageVersion Include="Data8.PowerPlatform.Dataverse.Client" Version="0.2.0" />
<PackageReference Include="Data8.PowerPlatform.Dataverse.Client" />
paket add Data8.PowerPlatform.Dataverse.Client --version 0.2.0
#r "nuget: Data8.PowerPlatform.Dataverse.Client, 0.2.0"
#addin nuget:?package=Data8.PowerPlatform.Dataverse.Client&version=0.2.0
#tool nuget:?package=Data8.PowerPlatform.Dataverse.Client&version=0.2.0
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);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Microsoft.IdentityModel.Protocols.WsTrust (>= 6.8.0)
- Microsoft.PowerPlatform.Dataverse.Client (>= 0.5.2)
- System.ServiceModel.Federation (>= 4.8.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Data8.PowerPlatform.Dataverse.Client:
Package | Downloads |
---|---|
Data8.DuplicareHelper
Wrapper for using Duplicare in custom code |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.4.2 | 21,455 | 5/29/2024 |
2.4.1 | 22,933 | 9/26/2023 |
2.4.0 | 5,830 | 9/5/2023 |
2.3.2 | 10,563 | 8/24/2023 |
2.3.1 | 31,333 | 11/18/2022 |
2.3.0 | 10,419 | 10/21/2022 |
2.2.0 | 3,844 | 9/12/2022 |
2.1.1 | 5,676 | 6/16/2022 |
2.1.0 | 733 | 5/19/2022 |
2.0.2 | 2,549 | 4/25/2022 |
2.0.1 | 940 | 3/24/2022 |
2.0.0 | 573 | 3/10/2022 |
1.0.0 | 836 | 11/15/2021 |
0.2.2 | 413 | 11/10/2021 |
0.2.1 | 412 | 11/9/2021 |
0.2.0 | 403 | 11/9/2021 |
0.1.0 | 482 | 11/9/2021 |
First release