Skip to content

Commit 20a260e

Browse files
authored
Merge branch 'main' into noa-agent-builder
2 parents 6d9f53b + 7457ae4 commit 20a260e

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Create table rows using the SDK for .NET"
33
description: "Learn how to create table rows using the SDK for .NET."
4-
ms.date: 01/18/2024
4+
ms.date: 12/16/2024
55
ms.reviewer: pehecke
66
ms.topic: article
77
author: MicroSri
@@ -30,6 +30,8 @@ Each of the examples uses a `svc` variable that represents an instance of a clas
3030

3131
> [!NOTE]
3232
> Each table has a unique identifier primary key column which you can specify when creating a row. In most cases you should allow the system to set this for you because the values generated by the system are optimized for best performance.
33+
>
34+
> Dataverse stores primary key data in telemetry to help maintain the service. If you specify customized primary key values, don't use sensitive information in those values.
3335
>
3436
> With elastic tables, you can create records with duplicate primary key values and different `partitionid` values. However, this pattern is not compatible with model-driven or canvas Power Apps. [Learn about setting the primary key value with elastic tables](../use-elastic-tables.md#setting-the-primary-key-value)
3537

powerapps-docs/developer/data-platform/use-elastic-tables.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Use elastic tables using code
33
description: Learn how to perform data operations on Dataverse elastic tables using code.
44
ms.topic: how-to
5-
ms.date: 02/22/2024
5+
ms.date: 12/16/2024
66
author: pnghub
77
ms.author: gned
88
ms.reviewer: jdaly
@@ -132,6 +132,7 @@ Here's an example:
132132
```
133133

134134
---
135+
135136
### Using the partitionId parameter
136137

137138
Currently, you can use a `partitionId` parameter to specify the value of the `partitionid` column only for `Retrieve` and `Delete` operations. For more information, go to [Known issue: The partitionId optional parameter isn't available for all messages](elastic-tables.md#the-partitionid-optional-parameter-isnt-available-for-all-messages).
@@ -281,6 +282,8 @@ Use the `x-ms-session-token` value that is returned with the `MSCRM.SessionToken
281282

282283
If you don't specify a primary key value, Dataverse sets a primary key value for the record when you create it. Letting Dataverse set this value is the normal practice. You can specify the primary key value if you need to. For elastic tables, there's no performance benefit in letting Dataverse set the primary key value.
283284

285+
Dataverse stores primary key data in telemetry to help maintain the service. If you specify customized primary key values, don't use sensitive information in those values.
286+
284287
Elastic tables don't return an error when you create a record with a primary key value that isn't unique. By setting the primary key values with elastic tables, you can create records with that have the same primary key values and different `partitionid` values. However, this pattern isn't compatible with Power Apps. Don't create records with duplicate primary key values when people need to use this data in canvas or model-driven apps.
285288

286289
## Update a record in an elastic table

powerapps-docs/developer/data-platform/webapi/create-entity-web-api.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create a table row using the Web API
33
description: Learn how to use the Web API to send a POST request to create a table row in Microsoft Dataverse.
4-
ms.date: 11/26/2024
4+
ms.date: 12/16/2024
55
ms.service: powerapps
66
ms.topic: how-to
77
author: MicroSri
@@ -75,6 +75,8 @@ For all system tables and attributes (table columns), you can find this informat
7575

7676
Each table has a unique identifier primary key column which you can specify when creating a row. In most cases you should allow the system to set this for you because the values generated by the system are optimized for best performance.
7777

78+
Dataverse stores primary key data in telemetry to help maintain the service. If you specify customized primary key values, don't use sensitive information in those values.
79+
7880
With elastic tables, you can create records with duplicate primary key values and different `partitionid` values. However, this pattern is not compatible with model-driven or canvas Power Apps. [Learn about setting the primary key value with elastic tables](../use-elastic-tables.md#setting-the-primary-key-value)
7981

8082
<a name="bkmk_createWithDataReturned"></a>

0 commit comments

Comments
 (0)