Skip to content

Commit 75a6096

Browse files
committed
Merge branch 'main' into pnghub-patch-2
2 parents 7680bf7 + f2d3a3f commit 75a6096

18 files changed

+196
-839
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",
328 KB
Loading
79.6 KB
Loading
Binary file not shown.

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/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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ One of the most fundamental concepts behind many of the challenges faced here is
3131
A common reason that problems can occur in this area is the lack of awareness of how customizations can affect transactions.
3232

3333
Although the details of how this is done is beyond the scope of this topic, the most simple element to consider is that as Dataverse interacts with data in its database. SQL Server determines the appropriate locks to be taken by transactions on that data such as:
34-
- When retrieving a particular record, SQL Server takes a read lock on that record.
35-
- When retrieving a range of records, in some scenarios it can take a read lock on that range of records or the entire table.
3634
- When creating a record, it generates a write lock against that record.
3735
- When updating a record, it takes a write lock against the record.
3836
- When a lock is taken against a table or record, it’s also taken against any corresponding index records.

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

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

powerapps-docs/developer/data-platform/webapi/TOC.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
href: quick-start-console-app-csharp.md
1313
- name: 'Quick Start: Blazor Server sample (C#)'
1414
href: quick-start-blazor-server-app.md
15-
- name: Enhanced quick start (C#)
16-
href: enhanced-quick-start.md
17-
- name: Start Web API project in Visual Studio
18-
href: start-web-api-project-visual-studio-csharp.md
1915
- name: Web service authentication
2016
href: authenticate-web-api.md
2117
- name: Types and operations

powerapps-docs/developer/data-platform/webapi/enhanced-quick-start.md

Lines changed: 0 additions & 479 deletions
This file was deleted.

0 commit comments

Comments
 (0)