Microsoft.CrmSdk.CoreAssemblies.Async
8.0.4
dotnet add package Microsoft.CrmSdk.CoreAssemblies.Async --version 8.0.4
NuGet\Install-Package Microsoft.CrmSdk.CoreAssemblies.Async -Version 8.0.4
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies.Async" Version="8.0.4" />
paket add Microsoft.CrmSdk.CoreAssemblies.Async --version 8.0.4
#r "nuget: Microsoft.CrmSdk.CoreAssemblies.Async, 8.0.4"
// Install Microsoft.CrmSdk.CoreAssemblies.Async as a Cake Addin #addin nuget:?package=Microsoft.CrmSdk.CoreAssemblies.Async&version=8.0.4 // Install Microsoft.CrmSdk.CoreAssemblies.Async as a Cake Tool #tool nuget:?package=Microsoft.CrmSdk.CoreAssemblies.Async&version=8.0.4
Adds IAsyncOrganizationService and IAsyncDiscoveryService with async versions of interface methods to the CRM Dynamics SDK.
When you call "IOrganizationService.Execute(request)" for instance, it blocks the current thread until the reply is received from the Dynamics CRM server. In case when multiple such operations are running in parallel the app will use too many worker threads (because they are blocked) and will start suffer from performance degradation due to thread exhaustion. To avoid this issue, it's better not to block threads and process server responses as soon as they are available. This extension library allows you to do this using Task Parrallel Library (TPL) and asynchronous calls to Dynamics CRM server, e.g. "await IAsyncOrganizationService.ExecuteAsync(request, cancellationToken)".
To use you need to create an async version of the client (Microsoft.Xrm.Sdk.Client.Async.AsyncOrganizationServiceProxy, Microsoft.Xrm.Sdk.Client.Async.AsyncDiscoveryServiceProxy, Microsoft.Xrm.Sdk.WebServiceClient.Async.OrganizationWebProxyAsyncClient, Microsoft.Xrm.Sdk.WebServiceClient.Async.DiscoveryWebProxyAsyncClient) which does asynchronous WCF calls to the service.
GitHub project: https://github.com/tyrotoxin/Microsoft.Xrm.Sdk.Async
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- Microsoft.CrmSdk.CoreAssemblies (>= 8.0.2.1)
- Microsoft.IdentityModel (>= 6.1.7600.16394)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Slightly improves performance by avoiding thread switching with Task.Run()