Skip to content

Commit 2eff1be

Browse files
Merge pull request SharePoint#5910 from JoanneHendrickson/patch-49
update migration-isv-guidance.md
2 parents e9e02b8 + 0fdf280 commit 2eff1be

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

docs/apis/migration-isv-guidance.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Migration guide for ISVs"
3+
ms.date: 06/18/2020
34
ms.reviewer:
45
ms.author: jhendr
56
author: JoanneHendrickson
@@ -88,11 +89,17 @@ There are two kinds of enumeration queries, assuming the client intends to read
8889

8990
To query for every item in the list, recursively – in other words, the order does not depend on which folder(s) the items are contained in – the query should sort by ID.
9091

91-
<OrderBy Override="TRUE"><FieldRef name="ID"/></OrderBy>
92+
`<OrderBy Override="TRUE"><FieldRef name="ID"/></OrderBy>`
9293

9394
To query for every item in a specific folder, the query should sort by the filename, **FileLeafRef**.
9495

95-
<OrderBy Override="TRUE"><FieldRef name="FileLeafRef"/></OrderBy>
96+
`<OrderBy Override="TRUE"><FieldRef name="FileLeafRef"/></OrderBy>`
97+
98+
## Permission guidance
99+
100+
You need to be aware of three key numbers as you plan your migration to OneDrive or SharePoint especially when you have a hierarchy of deeply nested folders. They are: (1) the number of SharePoint unique permission scopes, (2) the number of role assignments, and (3) the total number of items in a list or library. Read the full guidance:
101+
102+
- [Migration permission guidance](https://docs.microsoft.com/sharepoint/dev/apis/migration-perm-guidance)
96103

97104

98105
## For migrations over 100TB

0 commit comments

Comments
 (0)