Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

PostRows not working with package Microsoft.PowerBi.Api

I was able to get the rest APIs working quickly in C#. The code works fine without any errors or exceptions, but the PostRows ( ) method didn't seem to work.

 

The dataset, table, and columns get created fine, but the rows don't seem to get saved/loaded. I verify by going online to Power BI Service and using a table visualization and adding the table columns to it. It does not show the saved data - see screenshot.

 

Did the rows not save/load? or am I going to the wrong place to see the data?

Thank you for your help.

 

using package Microsoft.PowerBi.Api

 

 

var tableName = "test-table-1";
            var table = new Table()
            {
                Name = tableName,
                Columns = new List<Column>()
                {
                    new Column("col1", "string"),
                    new Column("col2", "string"),
                    new Column("col3", "string")
                }
            };
            var dataset = await PowerBiClient.Datasets.PostDatasetAsync(new CreateDatasetRequest()
            {
                Name = "test-dataset-1",
                DefaultMode = "Push",
                Tables = new List<Table>() {table}
            });
            var postRows = new PostRowsRequest
            {
                Rows = new List<object>()
                {
                    new
                    {
                        col1 = "sdsdds",
                        col2 = "rtetete",
                        col3 = "werwer2423"
                    },
                    new
                    {
                        col1 = "sd333sdds",
                        col2 = "rtet234ete",
                        col3 = "werw1111er"
                    }
                }
            };
            await PowerBiClient.Datasets.PostRowsAsync(dataset.Id, tableName, postRows);

 

 

Screenshot_2020-09-27 Power BI.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Further investigation revealed that the sdk doesn't handle serialization of anonymous types and silently blanks them out.

As an example, this can be overcome/verified by specifying serialization settings as below.

 

PowerBiClient.SerializationSettings.ContractResolver = new DefaultContractResolver(); //anonymous types serialize to blank {} without this
            await PowerBiClient.Datasets.PostRowsAsync(dataset.Id, tableName, postRows);

 

The sdk doesn't have great documentation - almost none actually.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Further investigation revealed that the sdk doesn't handle serialization of anonymous types and silently blanks them out.

As an example, this can be overcome/verified by specifying serialization settings as below.

 

PowerBiClient.SerializationSettings.ContractResolver = new DefaultContractResolver(); //anonymous types serialize to blank {} without this
            await PowerBiClient.Datasets.PostRowsAsync(dataset.Id, tableName, postRows);

 

The sdk doesn't have great documentation - almost none actually.

Anonymous
Not applicable

I was wondering why it was not working... seems like we have to go see the internal code.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.