Skip to content

Commit d8acf2d

Browse files
committed
edits
1 parent ea7786f commit d8acf2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

powerapps-docs/developer/data-platform/org-service/queryexpression/filter-rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contributors:
1616

1717
To set conditions on the rows of data to return, set the [QueryExpression.Criteria](/dotnet/api/microsoft.xrm.sdk.query.queryexpression.criteria) or [LinkEntity.LinkCriteria](/dotnet/api/microsoft.xrm.sdk.query.linkentity.linkcriteria) properties to an instance of the [FilterExpression class](/dotnet/api/microsoft.xrm.sdk.query.filterexpression).
1818

19-
To set the conditions, add one or more [ConditionExpression class](/dotnet/api/microsoft.xrm.sdk.query.conditionexpression) instances to the [FilterExpression.Conditions property](/dotnet/api/microsoft.xrm.sdk.query.filterexpression.conditions).
19+
To set the conditions, add one or more [ConditionExpression class](/dotnet/api/microsoft.xrm.sdk.query.conditionexpression) instances to the [FilterExpression.Conditions collection](/dotnet/api/microsoft.xrm.sdk.query.filterexpression.conditions).
2020

2121
The [FilterExpression.FilterOperator property](/dotnet/api/microsoft.xrm.sdk.query.filterexpression.filteroperator) uses the [LogicalOperator enum](/dotnet/api/microsoft.xrm.sdk.query.logicaloperator) value to specify whether *all* (`And`) or *any* (`Or`) of the conditions must be met. The default is `And`.
2222

powerapps-docs/developer/data-platform/org-service/queryexpression/page-results.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Dataverse has two paging models: *simple* and using *paging cookies*:
3939
:::column span="":::
4040
**Paging cookies**
4141

42-
- Uses the [QueryExpression.PageInfo](/dotnet/api/microsoft.xrm.sdk.query.queryexpression.pageinfo) [Count](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.count), [PageNumber](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.pagenumber), and [PagingCookie](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.pagingcookie) properties.
43-
- Set the `PagingCookie` property value to the value returned with previous page
42+
- Uses the [QueryExpression.PageInfo](/dotnet/api/microsoft.xrm.sdk.query.queryexpression.pageinfo), [Count](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.count), [PageNumber](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.pagenumber), and [PagingCookie](/dotnet/api/microsoft.xrm.sdk.query.paginginfo.pagingcookie) properties.
43+
- `PagingCookie` is null for the first request. For subsequent requests, set the `PagingCookie` property value to the value returned with previous page
4444
- Recommended for all data set sizes
4545
- [Some queries do not allow for paging cookies](#queries-that-dont-support-paging-cookies)
4646
- [Learn more about using paging cookies](#paging-cookies)

0 commit comments

Comments
 (0)