Skip to content

Commit cff940a

Browse files
committed
Merge branch 'main' into hub-page
2 parents 87d3ebb + f729b1b commit cff940a

File tree

71 files changed

+875
-1044
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+875
-1044
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/data-platform/webapi/enhanced-quick-start.md",
5+
"redirect_url": "get-started-dynamics-365-web-api-csharp",
6+
"redirect_document_id": "false"
7+
},
8+
{
9+
"source_path": "powerapps-docs/developer/data-platform/webapi/start-web-api-project-visual-studio-csharp.md",
10+
"redirect_url": "get-started-dynamics-365-web-api-csharp",
11+
"redirect_document_id": "false"
12+
},
313
{
414
"source_path": "powerapps-docs/developer/data-platform/org-service/azure-storage-partitioning-sdk.md",
515
"redirect_url": "../elastic-tables",
Loading
Loading
Binary file not shown.

powerapps-docs/developer/data-platform/optional-parameters.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Use optional parameters (Microsoft Dataverse) | Microsoft Docs"
33
description: "Use optional parameters to control operation behaviors"
4-
ms.date: 05/27/2023
4+
ms.date: 06/28/2023
55
ms.reviewer: jdaly
66
ms.topic: article
77
author: divkamath
@@ -222,6 +222,9 @@ More information:
222222

223223
Use the `tag` parameter to include a shared variable value that is accessible within a plug-in. This extra information allows a plug-in to apply logic that depends on the client application.
224224

225+
> [!NOTE]
226+
> This parameter is intended for client applications to be able to set any value they wish. No Microsoft feature should require that you set a specific value in your client application code to enable different behaviors.
227+
225228
To access the value in a plug-in, use the [IExecutionContext.SharedVariables collection](xref:Microsoft.Xrm.Sdk.IExecutionContext.SharedVariables)
226229

227230
```csharp

powerapps-docs/developer/data-platform/org-service/entity-operations-update-delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ Target = account
290290
};
291291

292292
//The existing entity is updated.
293-
var response2 = (UpsertResponse)svc.Execute(request1);
293+
var response2 = (UpsertResponse)svc.Execute(request2);
294294
Console.WriteLine("Record Created: {0}", response2.RecordCreated); //false
295295
```
296296

powerapps-docs/developer/data-platform/org-service/samples/azure-aware-custom-plugin.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Azure aware custom plug-in (Microsoft Dataverse) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "This sample plug-in can post the pipeline execution context to the Azure Service Bus." # 115-145 characters including spaces. This abstract displays in the search result.
4-
ms.date: 04/03/2022
4+
ms.date: 06/19/2023
55
author: jaredha
66
ms.author: jaredha
77
ms.reviewer: jdaly
@@ -20,10 +20,18 @@ The plug-in demonstrates how to obtain the execution context and the tracing ser
2020
## How to run this sample
2121

2222
1. Download or clone the [Samples](https://github.com/Microsoft/PowerApps-Samples) repo so that you have a local copy.
23-
2. Open the sample solution in Visual Studio and sign the assembly with a key.
24-
3. Register the plug-in using the **Plugin Registration Tool**.
23+
1. Open the `Azureplugin.sln` solution file located at `PowerApps-Samples\dataverse\orgsvc\C#\Azureplugin` with Visual Studio.
24+
1. Sign the assembly with a key.
25+
1. Register the plug-in using the **Plugin Registration Tool**.
2526

2627
> [!NOTE]
2728
> This sample requires a service endpoint to be created first, and its ID passed to the plug-in constructor through the unsecure configuration parameter when the plug-in step is registered.
2829
30+
More information:
31+
32+
[Write a custom Azure-aware plug-in](../../write-custom-azure-aware-plugin.md)
33+
[Register a plug-in](../../register-plug-in.md)
34+
35+
36+
2937
[!INCLUDE[footer-include](../../../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/register-plug-in.md

Lines changed: 44 additions & 93 deletions
Large diffs are not rendered by default.

powerapps-docs/developer/data-platform/scalable-customization-design/database-transactions.md

Lines changed: 53 additions & 59 deletions
Large diffs are not rendered by default.

powerapps-docs/developer/data-platform/scalable-customization-design/overview.md

Lines changed: 32 additions & 36 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)