Skip to content

Commit 3b7219b

Browse files
authored
Merge pull request #8916 from MicrosoftDocs/jdaly-main-deletemultiple
removed known issue
2 parents cb03b2a + 4d27879 commit 3b7219b

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

powerapps-docs/developer/data-platform/bulk-operations.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,6 @@ A key requirement of the bulk operation messages is that organizations must not
396396

397397
- When a single operation message is used, the respective bulk operation event occurs with an [EntityCollection](xref:Microsoft.Xrm.Sdk.EntityCollection) containing a *single* [Entity](xref:Microsoft.Xrm.Sdk.Entity) instance passed in the `Targets` parameter. You can move any logic that responds to single operation events to the more efficient bulk operation events and the logic is applied for both individual and multiple operations.
398398

399-
> [!NOTE]
400-
> Don't migrate custom logic to the `DeleteMultiple` message until [Known issue: DeleteMultiple plug-ins not invoked for Delete](deletemultiple.md#deletemultiple-plug-ins-not-invoked-for-delete) is resolved.
401-
402399
Before the introduction of bulk operation messages, all custom logic was on the single operation messages. That logic must continue to be applied when client applications use the bulk operation messages. For tables used with high-volume bulk operations, we recommend that you begin to move any synchronous logic from single message events to bulk operation events. If you're introducing new logic, use the bulk operation events rather than the single operation events.
403400

404401
> [!CAUTION]

powerapps-docs/developer/data-platform/deletemultiple.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use DeleteMultiple (preview)
33
description: Learn how to use Delete to delete multiple rows of data in a Microsoft Dataverse elastic table.
4-
ms.date: 11/13/2023
4+
ms.date: 11/15/2023
55
author: pnghub
66
ms.author: gned
77
ms.reviewer: jdaly
@@ -120,16 +120,6 @@ OData-Version: 4.0
120120

121121
`DeleteMultiple` is supported only for elastic tables. Elastic tables don't support [table relationship cascading behavior](configure-entity-relationship-cascading-behavior.md), which can result in unpredictable execution times for delete operations. If you use `DeleteMultiple` on a standard table, you get the error: `DeleteMultiple has not yet been implemented.`
122122

123-
## Known issues
124-
125-
The following issues will be addressed before `DeleteMultiple` becomes generally available.
126-
127-
### DeleteMultiple plug-ins not invoked for Delete
128-
129-
As part of the changes we made to [merge message pipelines](bulk-operations.md#message-pipelines-merged), any custom logic for the multiple version of the message must also be invoked when the single version of the message is invoked. At this time, plug-in steps registered for the `DeleteMultiple` message *are not* being called when `Delete` is used. Plug-in steps registered for `Delete` *are* being invoked when `DeleteMultiple` is used.
130-
131-
You shouldn't migrate custom logic from `Delete` to `DeleteMultiple` until this issue is resolved. You can use `DeleteMultiple` and any logic that's associated with the `Delete` message still works.
132-
133123

134124
## Examples
135125

0 commit comments

Comments
 (0)