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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
TBardien
Helper I
Helper I

Dataset relationships through the API

How do I get the Dataset relationships through the API?

 

So, I am trying to call "client.Datasets.PostDatasetInGroupAsync(Guid groupId, CreateDatasetRequest dataset)

I have the groupID, so I am trying to create the "CreateDatasetRequest dataset".

"CreateDatasetRequest " is a class that looks like this:

public string Name { get; set; }
public IList<Table> Tables { get; set; }
                      public IList<Relationship> Relationships { get; set; }
                   public IList<Datasource> Datasources { get; set; }
              public DatasetMode? DefaultMode { get; set; }

 

I need the Tables, the Relationships and the Datasources.

My dataset is basically a copy of another dataset, and I am getting the information from the copied datasource.

I can get Tables like this: client.Datasets.GetTablesInGroupAsync(workspaceId, datasetID);

NOTE: client.Datasets.GetTablesInGroupAsync(workspaceId, datasetID); does not seem to work. it throws a NOT FOUND ERROR.

and the datasource like this: client.Datasets.GetDatasourcesInGroupAsync(workspaceId, datasetID);

 

But I cannot find a way to get the Relationships.

Is there a way that I can do this?

1 REPLY 1
lbendlin
Super User
Super User

Connect to the XMLA endpoint and run your XMLA scripts aganst the DMVs.  Use DAX Studio or similar to experiment with that.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.