private static void Test_Serialization(PBIAPIClient pbic) { PBIDataset dataset = new PBIDataset("myDataset", PBIDefaultMode.Streaming); dataset.ParentPowerBIAPI = pbic; dataset.SyncFromPowerBI(); // check if a Dataset with the same ID or Name already exists in the PowerBI-Service PBITable salesTable = new PBITable("Facts"); // create a PBI table manually salesTable.AddColumn(new PBIColumn("ProductKey", PBIDataType.Int64) { IsHidden = true }); // hiding a column salesTable.AddColumn(new PBIColumn("SalesDate", PBIDataType.DateTime) { FormatString = "yyyy-MM-dd" }); // setting the Formatstring salesTable.AddColumn(new PBIColumn("Amount_BASE", PBIDataType.Double) { FormatString = "$ #,##0.00", IsHidden = true }); string x = PBIJsonHelper.SerializeObject(dataset); }
private static void Sample_PushDataset(PBIAPIClient pbic) { string datasetName = "MyPushDataset"; string tableNameFacts = "MySalesTable"; PBIDataset dataset = new PBIDataset(datasetName, PBIDefaultMode.Push); dataset.ParentPowerBIAPI = pbic; dataset.SyncFromPowerBI(); // check if a Dataset with the same ID or Name already exists in the PowerBI-Service PBITable salesTable = new PBITable(tableNameFacts); // create a PBI table manually salesTable.AddColumn(new PBIColumn("ProductKey", PBIDataType.Int64) { IsHidden = true }); // hiding a column salesTable.AddColumn(new PBIColumn("SalesDate", PBIDataType.DateTime) { FormatString = "yyyy-MM-dd" }); // setting the Formatstring salesTable.AddColumn(new PBIColumn("Amount_BASE", PBIDataType.Double) { FormatString = "$ #,##0.00", IsHidden = true }); salesTable.AddColumn(new PBIColumn("Quantity_BASE", PBIDataType.Int64) { FormatString = "#,##0", IsHidden = true }); salesTable.Measures.Add(new PBIMeasure("Sales Amount", "SUM('{0}'[{1}])", tableNameFacts, "Amount_BASE")); // adding a measure salesTable.Measures.Add(new PBIMeasure("Quantity", "SUM('{0}'[{1}])", tableNameFacts, "Quantity_BASE")); // adding a measure dataset.AddOrUpdateTable(salesTable); Console.WriteLine("Publishing to PowerBI Service ... "); dataset.PublishToPowerBI(); Console.WriteLine("Done!"); }
private static void Sample_Create_Model(PBIAPIClient pbic) { string datasetName = "MyPushDataset"; string tableNameFacts = "MySalesTable"; string tableNameProducts = "MyProductTable"; PBIDataset dataset = new PBIDataset(datasetName, PBIDefaultMode.Push); dataset.ParentPowerBIAPI = pbic; dataset.SyncFromPowerBI(); // check if a Dataset with the same ID or Name already exists in the PowerBI-Service PBITable salesTable = new PBITable(tableNameFacts); // create a PBI table manually salesTable.AddColumn(new PBIColumn("ProductKey", PBIDataType.Int64) { IsHidden = true }); // hiding a column salesTable.AddColumn(new PBIColumn("SalesDate", PBIDataType.DateTime) { FormatString = "yyyy-MM-dd" }); // setting the Formatstring salesTable.AddColumn(new PBIColumn("Amount_BASE", PBIDataType.Double) { FormatString = "$ #,##0.00", IsHidden = true }); salesTable.Measures.Add(new PBIMeasure("Sales Amount", "SUM('{0}'[{1}])", tableNameFacts, "Amount_BASE")); // adding a measure // create a regular DataTable - but could also be derived from a SQL Database! DataTable dataTable = new DataTable(tableNameProducts); dataTable.Clear(); dataTable.Columns.Add("ProductKey", typeof(int)); dataTable.Columns.Add("ProductName", typeof(string)); DataRow prod1 = dataTable.NewRow(); prod1["ProductKey"] = 1; prod1["ProductName"] = "Bikes"; dataTable.Rows.Add(prod1); DataRow prod2 = dataTable.NewRow(); prod2["ProductKey"] = 2; prod2["ProductName"] = "Clothing"; dataTable.Rows.Add(prod2); // create a PBI table from a regular DataTable object PBITable productsTable = new PBITable(dataTable); dataset.AddOrUpdateTable(salesTable); dataset.AddOrUpdateTable(productsTable); dataset.Relationships.Add(new PBIRelationship("MyRelationship", salesTable.GetColumnByName("ProductKey"), productsTable.GetColumnByName("ProductKey"))); Console.WriteLine("Publishing to PowerBI Service ... "); dataset.PublishToPowerBI(); Console.WriteLine("Done!"); salesTable.DeleteRowsFromPowerBI(); PBIRow row = salesTable.GetSampleRow(); row.SetValue("ProductKey", 1); row.SetValue("SalesDate", DateTime.Now); row.SetValue("Amount_BASE", 100); salesTable.PushRowToPowerBI(row); salesTable.PushRowToPowerBI(new PBIRow(new Dictionary <string, object> { { "ProductKey", 2 }, { "SalesDate", DateTime.Now }, { "Amount_BASE", 50.90 } })); salesTable.PushRowToPowerBI(new PBIRow(new Dictionary <string, object> { { "ProductKey", 1 }, { "SalesDate", DateTime.Now }, { "Amount_BASE", 70.3 } })); salesTable.PushRowToPowerBI(new PBIRow(new Dictionary <string, object> { { "ProductKey", 2 }, { "SalesDate", DateTime.Now }, { "Amount_BASE", 150.70 } })); productsTable.PushRowsToPowerBI(); }