File tree Expand file tree Collapse file tree
src/PowerPlatform/Dataverse/operations Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -177,14 +177,6 @@ def create(
177177 :raises ValueError: If ``records`` is empty or the number of returned
178178 IDs does not match the number of input rows.
179179
180- .. tip::
181- The SDK automatically splits large DataFrames into sequential
182- 1,000-row chunks before sending to ``CreateMultiple``. You do not
183- need to pre-split large DataFrames. Note that chunked operations
184- are **not atomic** — a failure mid-way may leave earlier chunks
185- applied. Callers that require atomicity should limit input to
186- ≤ 1,000 rows.
187-
188180 Example:
189181 Create records from a DataFrame::
190182
@@ -255,14 +247,6 @@ def update(
255247 ``clear_nulls`` is ``True``, NaN/None values become explicit nulls, so
256248 rows are never skipped.
257249
258- .. tip::
259- The SDK automatically splits large DataFrames into sequential
260- 1,000-row chunks before sending to ``UpdateMultiple`` (or a single
261- PATCH for one row). You do not need to pre-split large DataFrames.
262- Note that chunked operations are **not atomic** — a failure
263- mid-way may leave earlier chunks applied. Callers that require
264- atomicity should limit input to ≤ 1,000 rows.
265-
266250 Example:
267251 Update records with different values per row::
268252
You can’t perform that action at this time.
0 commit comments