You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/work-with-data.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,17 +19,19 @@ Use Dataverse tables to model and manage business data. You can use [existing ta
19
19
20
20
Dataverse also has APIs known as *messages*. Each message has a name like `Create`, `Delete`, or `WhoAmI`. Messages define a set of input parameters and output properties to encapsulate logic that executes on the server. If you come from a SQL database background, you can think of these like SQL stored procedures. You can use messages that Dataverse provides or you can [create your own messages](custom-actions.md).
21
21
22
-
### Change data
22
+
##Retrieve, add, and modify data
23
23
24
-
Dataverse provides two ways to apply changes to data: Web API & SDK for .NET. Choose the one that best matches the requirements, your skills, and your preferences.
24
+
Dataverse provides two ways to retrieve, add, and modify data: Web API & SDK for .NET. Choose the one that best matches the requirements, your skills, and preferences.
25
25
26
26
:::image type="content" source="media/whentousewebapi.svg" alt-text="Flow diagram to choose programming style":::
27
27
28
28
### Web API
29
29
30
30
The Dataverse Web API is an OData v4 RESTful endpoint. Use the Web API for any programming language that supports HTTP requests and authentication using OAuth 2.0.
31
31
32
-
More information: [Use the Dataverse Web API](webapi/overview.md)
32
+
-[Learn to use the Dataverse Web API](webapi/overview.md)
33
+
-[Quick Start: Web API with PowerShell and Visual Studio Code](webapi/quick-start-ps.md)
34
+
-[Quick Start: Web API sample (C#)](webapi/quick-start-console-app-csharp.md)
33
35
34
36
### SDK for .NET
35
37
@@ -42,13 +44,16 @@ The Dataverse SDK for .NET supports build targets for both .NET Framework and .N
42
44
43
45
If you are using our [PowerShell module](https://www.powershellgallery.com/packages/Microsoft.Xrm.Tooling.CrmConnector.PowerShell/) or using our [custom log-in control](xrm-tooling/use-xrm-tooling-common-login-control-client-applications.md) with a Windows client application, use the [the Xrm.Tooling](xrm-tooling/build-windows-client-applications-xrm-tools.md)
44
46
47
+
-[Use the SDK for .NET](org-service/overview.md)
48
+
-[Quickstart: Execute an SDK for .NET request (C#)](org-service/quick-start-org-service-console-app.md)
49
+
45
50
## Search Dataverse data
46
51
47
52
Dataverse search delivers fast and comprehensive search results across multiple tables, in a single list, sorted by relevance. It also provides capabilities to support suggestions and autocompletion experiences in apps.
48
53
49
54
Search has a native endpoint and there are Dataverse messages that you can use from the Web API or Organization service.
50
55
51
-
More information: [Search for Dataverse records](search/overview.md)
56
+
[Learn to search for Dataverse records](search/overview.md)
0 commit comments