Skip to content

Commit 9dd1393

Browse files
authored
Updates for jsonpatch.md
Fixes #36419 - Replace references to T with TModel - Replace "Action method code" section with Minimal APIs PATCH endpoint - Replace "Action method code" section with Minimal APIs PATCH endpoint - Update the "Get the code" section -Update "Additional resources" source code link
1 parent 84eb7f9 commit 9dd1393

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/web-api/jsonpatch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To enable JSON Patch support with <xref:System.Text.Json>, install the [`Microso
5757
dotnet add package Microsoft.AspNetCore.JsonPatch.SystemTextJson
5858
```
5959

60-
This package provides a <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class to represent a JSON Patch document for objects of type `T` and custom logic for serializing and deserializing JSON Patch documents using <xref:System.Text.Json>. The key method of the <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class is <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument.ApplyTo(System.Object)>, which applies the patch operations to a target object of type `T`.
60+
This package provides a <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class to represent a JSON Patch document for objects of type `TModel` and custom logic for serializing and deserializing JSON Patch documents using <xref:System.Text.Json>. The key method of the <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument%601> class is <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson.JsonPatchDocument.ApplyTo(System.Object)>, which applies the patch operations to a target object of type `TModel`.
6161

6262
## Action method code applying JSON Patch
6363

0 commit comments

Comments
 (0)