Skip to content

Commit 255c3c4

Browse files
committed
Build warning fixes
1 parent 12399a0 commit 255c3c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ The Web API supports these standard OData string query functions:
239239
240240
### Microsoft Dataverse Web API query functions
241241

242-
Dataverse provides a number of special functions that accept parameters, return Boolean values, and can be used as filter criteria in a query. See <xref:Microsoft.Dynamics.CRM.QueryFunctionIndex /> for a list of these functions. The following is an example of the <xref:Microsoft.Dynamics.CRM.Between?text=Between Function /> searching for accounts with a number of employees between 5 and 2000.
242+
Dataverse provides a number of special functions that accept parameters, return Boolean values, and can be used as filter criteria in a query. See <xref:Microsoft.Dynamics.CRM.QueryFunctionIndex?displayProperty=nameWithType> for a list of these functions. The following is an example of the <xref:Microsoft.Dynamics.CRM.Between?text=Between Function /> searching for accounts with a number of employees between 5 and 2000.
243243

244244
```http
245245
GET [Organization URI]/api/data/v9.1/accounts?$select=name,numberofemployees
@@ -448,11 +448,11 @@ To get the same results as the example above, you can retrieve records of two en
448448

449449
Follow the steps in the below example to understand how we can filter results using the iteration method:
450450

451-
1. Get a distinct list of <xref:Microsoft.Dynamics.CRM.team />._administratorid_value values.
451+
1. Get a distinct list of <xref:Microsoft.Dynamics.CRM.team?displayProperty=nameWithType>._administratorid_value values.
452452
- `GET [OrganizationURI]/api/data/v9.1/teams?$select=_administratorid_value&$filter=_administrator_value ne null`
453453
- Then loop through the returned values to remove duplicates and get a distinct list. i.e. Create a new array, loop through the query results, for each check to see if they are already in the new array, if not, add them. This should give you a list of distinct `systemuserid` values
454454
- The way you would do this in JavaScript vs C# would be different, but essentially you should be able to get the same results.
455-
2. Query <xref:Microsoft.Dynamics.CRM.systemuser /> using <xref:Microsoft.Dynamics.CRM.ContainValues?text=ContainValues Query Function /> to compare the `systemuserid` values with the list collected in Step 1.
455+
2. Query <xref:Microsoft.Dynamics.CRM.systemuser?displayProperty=nameWithType> using <xref:Microsoft.Dynamics.CRM.ContainValues?text=ContainValues Query Function /> to compare the `systemuserid` values with the list collected in Step 1.
456456

457457
<a name="bkmk_order"></a>
458458

powerapps-docs/developer/data-platform/webapi/quick-start-console-app-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You will authenticate and use an <xref:System.Net.Http.HttpClient> to send a `GE
7474
7575
1. Browse for the `Newtonsoft.Json` NuGet package and install the latest version.
7676

77-
![Install Microsoft.IdentityModel.Clients.ActiveDirectory NuGet package](../media/quick-start-web-api-console-app-csharp-4.png)
77+
![Install the Microsoft.IdentityModel.Clients.ActiveDirectory NuGet package](../media/quick-start-web-api-console-app-csharp-4.png)
7878

7979
## Edit Program.cs
8080

0 commit comments

Comments
 (0)