Skip to content

Commit 1013bbe

Browse files
author
Abel Milash
committed
Update docs
1 parent 63ec8a8 commit 1013bbe

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.claude/skills/dataverse-sdk-use/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The SDK provides DataFrame wrappers for all CRUD operations using pandas DataFra
124124
```python
125125
import pandas as pd
126126

127-
# Query records — returns a single DataFrame (like pd.read_sql)
127+
# Query records — returns a single DataFrame
128128
df = client.get_dataframe("account", filter="statecode eq 0", select=["name"])
129129
print(f"Got {len(df)} rows")
130130

examples/advanced/dataframe_operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def main():
110110
client.update_dataframe(table, new_accounts[["accountid", "telephone1"]], id_column="accountid")
111111
print("[OK] Updated 3 records")
112112

113-
# Verify the updates with a query
113+
# Verify the updates
114114
verified = client.get_dataframe(table, select=select_cols, filter=test_filter)
115115
print(f" Verified:\n{verified.to_string(index=False)}")
116116

src/PowerPlatform/Dataverse/claude_skill/dataverse-sdk-use/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The SDK provides DataFrame wrappers for all CRUD operations using pandas DataFra
124124
```python
125125
import pandas as pd
126126

127-
# Query records — returns a single DataFrame (like pd.read_sql)
127+
# Query records — returns a single DataFrame
128128
df = client.get_dataframe("account", filter="statecode eq 0", select=["name"])
129129
print(f"Got {len(df)} rows")
130130

src/PowerPlatform/Dataverse/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def get_dataframe(
380380
381381
When ``record_id`` is provided, returns a single-row DataFrame.
382382
When ``record_id`` is None, internally iterates all pages and returns one
383-
consolidated DataFrame, similar to ``pd.read_sql()``.
383+
consolidated DataFrame.
384384
385385
:param table_schema_name: Schema name of the table (e.g. ``"account"`` or ``"new_MyTestTable"``).
386386
:type table_schema_name: :class:`str`
@@ -503,7 +503,7 @@ def update_dataframe(
503503
Update records from a pandas DataFrame.
504504
505505
Each row in the DataFrame represents an update. The ``id_column`` specifies which
506-
column contains the record GUIDs; the remaining columns are the fields to update.
506+
column contains the record GUIDs.
507507
508508
:param table_schema_name: Schema name of the table (e.g. ``"account"`` or ``"new_MyTestTable"``).
509509
:type table_schema_name: :class:`str`

0 commit comments

Comments
 (0)