Dynamics365CustomBinding 1.0.5
See the version list below for details.
dotnet add package Dynamics365CustomBinding --version 1.0.5
NuGet\Install-Package Dynamics365CustomBinding -Version 1.0.5
<PackageReference Include="Dynamics365CustomBinding" Version="1.0.5" />
paket add Dynamics365CustomBinding --version 1.0.5
#r "nuget: Dynamics365CustomBinding, 1.0.5"
// Install Dynamics365CustomBinding as a Cake Addin #addin nuget:?package=Dynamics365CustomBinding&version=1.0.5 // Install Dynamics365CustomBinding as a Cake Tool #tool nuget:?package=Dynamics365CustomBinding&version=1.0.5
Dynamics 365 Binding
A custom binding for Dynamics 365 inside Azure function
Features
- Output binding for multiple Dynamics 365 Organization Requests
- Input / output binding for Dynamcis 365 Service Client
Dependencies
- .Net 6.x
- Microsoft.Azure.WebJob 3.0.32+
- Microsoft.Azure.WebJob.Core 3.0.32+
- Microsoft.PowerPlatform.Dataverse.Client 0.6.6+
Installation
Install the package and all dependencies.
PM> Install-Package Dynamics365CustomBinding -version <latest_version>
Samples
Dynamics 365 Binding can be used as in following ways
Output Binding Usage
If all you need is just to send some commands to Dyancmis 365 and not care about their retuns or futhre actions, Dyanmics 365 Output Binding can be used as below
[FunctionName("<your_function_name>")]
public static async Task<string> <your_function_name>(<your_function_trigger>,
[Dynamics365Output("%<your_dynamics_365_connection_string>%", ContinueOnError = false)] IAsyncCollector<OrganizationRequest> requests,
ILogger log)
{
log.LogInformation($"Function triggered");
Microsoft.Xrm.Sdk.Entity bpi= new Microsoft.Xrm.Sdk.Entity("account");
bpi["name"] = "Test User";
CreateRequest req = new CreateRequest();
req.Target = bpi;
await requests.AddAsync(req);
return "done!";
}
The sample above shows a CreateRequest, and you can do any requests derived from OrganizationRequest. As for connection string, please refer to https://docs.microsoft.com/en-us/powerapps/developer/data-platform/xrm-tooling/use-connection-strings-xrm-tooling-connect. In particular, if you are using service account, please following OAuth section; if you are using client secret please follow Client Secret section.
Input / output Binding Usage
If all you need more complicated stuff than just to send some commands to Dyancmis 365, Dyanmics 365 Input / Output Binding can be used as below
[FunctionName("<your_function_name>")]
public static string ProcessSubpoenaWorker(<your_function_trigger>,
[Dynamics365Client("%<your_dynamics_365_connection_string>%")] ServiceClient client,
ILogger log)
{
log.LogInformation($"Function triggered");
using(client) {
// your actions with Dynamics 365
}
return "done!";
}
For Dynamics 365 connection string, please refer to the previous section for more details. For how to user ServiceClient, please refer to https://www.nuget.org/packages/Microsoft.PowerPlatform.Dataverse.Client/
License
Free software, absolutely no warranty, use at your own risk!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- Microsoft.Azure.WebJobs (>= 3.0.32)
- Microsoft.Azure.WebJobs.Core (>= 3.0.32)
- Microsoft.PowerPlatform.Dataverse.Client (>= 0.6.6)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Updated nuget package version & added comments