Skip to content

Commit 0eaa748

Browse files
authored
Merge branch 'main' into marcelbf-patch-2
2 parents ff51313 + 030249b commit 0eaa748

File tree

201 files changed

+761
-764
lines changed

Some content is hidden

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

201 files changed

+761
-764
lines changed

powerapps-docs/developer/data-platform/access-web-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.custom: ""
55
ms.date: 06/23/2022
66
ms.reviewer: "pehecke"
77
ms.topic: "article"
8-
author: "divkamath"
8+
author: MicroSri
99
ms.subservice: dataverse-developer
1010
ms.author: "pehecke"
1111
search.audienceType:

powerapps-docs/developer/data-platform/analyze-performance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Learn how to find and analyze performance data on plug-ins executi
44
ms.date: 08/15/2023
55
ms.reviewer: "pehecke"
66
ms.topic: "article"
7-
author: "divkamath"
7+
author: MicroSri
88
ms.subservice: dataverse-developer
99
ms.author: "pehecke"
1010
search.audienceType:

powerapps-docs/developer/data-platform/api-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: "Understand what a developer needs to do to manage service protecti
44
ms.date: 01/31/2023
55
ms.reviewer: jdaly
66
ms.topic: article
7-
author: divkamath
7+
author: MicroSri
88
ms.subservice: dataverse-developer
9-
ms.author: dikamath
9+
ms.author: sriknair
1010
search.audienceType:
1111
- developer
1212
contributors:

powerapps-docs/developer/data-platform/application-insights-ilogger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: "Write Telemetry to your Application Insights resource using ILogger (Microsoft Dataverse) | Microsoft Docs"
33
description: "When you enable Application Insights for your organization, any plug-ins written using the ILogger Interface provided in the SDK writes telemetry to your Application Insights resource."
44
ms.date: 03/10/2023
5-
author: divkamath
6-
ms.author: dikamath
5+
author: MicroSri
6+
ms.author: sriknair
77
ms.reviewer: pehecke
88
ms.topic: article
99
ms.subservice: dataverse-developer

powerapps-docs/developer/data-platform/apply-business-logic-with-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Apply business logic using code (Microsoft Dataverse)| Microsoft Docs
33
description: Learn how to write code to customize business data processing in Microsoft Dataverse.
44
ms.date: 04/03/2022
5-
author: divkamath
6-
ms.author: dikamath
5+
author: MicroSri
6+
ms.author: sriknair
77
ms.reviewer: pehecke
88
suite: powerapps
99
ms.subservice: dataverse-developer

powerapps-docs/developer/data-platform/asynchronous-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ Here's what to look for in the results:
589589

590590
### Queries for file storage
591591

592-
When the [Data column](reference/entities/asyncoperation.md#BKMK_Data) of the `AsyncOperation` table is larger than 4 MB, the data in that column is saved in file storage. The [DataBlobId column](reference/entities/asyncoperation.md#BKMK_DataBlobId) has a value when the row uses file storage. To save space, you might want to identify and delete these records. Use the following queries to discover these records
592+
Depending on the size of the [Data column](reference/entities/asyncoperation.md#BKMK_Data) of the `AsyncOperation` table, the data in that column may be saved in file storage. The [DataBlobId column](reference/entities/asyncoperation.md#BKMK_DataBlobId) has a value when the row uses file storage. To save space, you might want to identify and delete these records. Use the following queries to discover these records
593593

594594
#### AsyncOperation file storage datablobid count
595595

powerapps-docs/developer/data-platform/azure-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Plug-ins are one of two methods used to initiate posting the message containing
5555

5656
An Azure-aware default (OOB) plug-in is available and can be registered with Dataverse by registering a service endpoint using the Plug-in Registration tool. You must register a plug-in 'step' in the event execution pipeline that identifies the message and table combination that triggers the plug-in to execute and perform the posting notification. When executed, the plug-in notifies the asynchronous service, through a service endpoint notification service (<xref:Microsoft.Xrm.Sdk.IServiceEndpointNotificationService>), to post the current request data context to the Azure Service Bus.
5757

58-
You can also write your own custom plug-in that is “Azure-aware”. The custom plug-in executes in partial-trust mode in the sandbox. A custom plug-in can initiate posting of the data context to the service bus through the service endpoint notification service. Adding code to invoke this service makes the plug-in “Azure-aware”.
58+
You can also write your own custom plug-in that is “Azure-aware”. The custom plug-in executes in the sandbox. A custom plug-in can initiate posting of the data context to the service bus through the service endpoint notification service. Adding code to invoke this service makes the plug-in “Azure-aware”.
5959

6060
For more information about plug-ins in general, see [Writing a Plug-in](write-plug-in.md). For more information about Azure-aware plug-ins, see [Write a Custom Azure-aware Plug-in](write-custom-azure-aware-plugin.md).
6161

powerapps-docs/developer/data-platform/best-practices/business-logic/do-not-use-parallel-execution-in-plug-ins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: "Do not use parallel execution within plug-ins and workflow activities | MicrosoftDocs"
33
description: "Multi or parallel threading within plug-ins or custom workflow activities is not supported."
44
ms.date: 04/03/2022
5-
author: divkamath
6-
ms.author: dikamath
5+
author: MicroSri
6+
ms.author: sriknair
77
ms.reviewer: pehecke
88
ms.topic: article
99
ms.subservice: dataverse-developer

powerapps-docs/developer/data-platform/best-practices/business-logic/implement-all-types-of-queries-when-filtering-preoperation-retrievemultiple.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: "Implement all types of queries when filtering results using PreOperation
33
description: "For best performance and consistent results for all applications you must implement filtering for all types of queries that can be used with plug-ins that are registered for the PreOperation stage of RetrieveMultiple."
44
suite: powerapps
55
ms.date: 04/03/2022
6-
author: divkamath
7-
ms.author: dikamath
6+
author: MicroSri
7+
ms.author: sriknair
88
ms.reviewer: pehecke
99
ms.topic: article
1010
ms.subservice: dataverse-developer

powerapps-docs/developer/data-platform/best-practices/business-logic/manage-plug-ins-single-solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: "Manage plug-ins in a single solution | MicrosoftDocs"
33
description: "The definition of a Plug-in assembly should be maintained within a single solution. You may want to have a separate solution that contains only plug-in definitions to help manage the plugin definitions."
44
ms.date: 04/03/2022
5-
author: divkamath
6-
ms.author: dikamath
5+
author: MicroSri
6+
ms.author: sriknair
77
ms.reviewer: pehecke
88
suite: powerapps
99
ms.subservice: dataverse-developer

0 commit comments

Comments
 (0)