Skip to content

Commit 48b41a5

Browse files
committed
Edit review and incorporation
1 parent 100d317 commit 48b41a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powerapps-docs/developer/common-data-service/fetchxml-performance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ requests into smaller, more usable segments, which can improve the performance o
2929
> performance issues with your existing fetch request.
3030
3131
Executing a traditional fetch for a given number of the top entity records will pull all
32-
the columns in the selected list that meet the filter criteria. Let's say you're
32+
the columns in the select list that meet the filter criteria. Let's say you're
3333
pulling the top 500 records on an entity that has 100 columns and 100,000 rows
3434
that meet the filter criteria. This request can cause issues in two ways:
3535

3636
- The 99,500 rows will pull all columns, even though you only need to populate
37-
the selected list for 500 rows when returning to the client.
37+
the select list for 500 rows when returning to the client.
3838

39-
- The query optimizer<!--note from editor: I assume this is an internal feature? I don't find it elsewhere in the doc set or in any style guide, hence the change to lowercase.--> can generate an arbitrary order when retrieving the child
39+
- The query optimizer can generate an arbitrary order when retrieving the child
4040
columns, resulting in a data order you don't want.
4141

4242
When you use `LateMaterialize`, you create a fetch that will:

0 commit comments

Comments
 (0)