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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Clampazzo
Resolver I
Resolver I

Can I add a role for RLS Using XMLA Endpiont and C#?

I have managed to create a new semantic model using XMLA Endpoint and C# but now I need to be able to create Roles for RLS using the same method.  Is this allowed?  And if so How can I go about doing it? 

Below is my simple code in creating the semantic model.

 

If I can call a REST API tha twould work too... I just didn't see any that would work.

 

 

   string newDatabaseName = server.Databases.GetNewName(DatabaseName);

   var database = new Microsoft.AnalysisServices.Database()
   {
       Name = newDatabaseName,
       ID = newDatabaseName,
       CompatibilityLevel = 1520,
       StorageEngineUsed = Microsoft.AnalysisServices.StorageEngineUsed.TabularMetadata,
       Model = new Model()
       {
           Name = DatabaseName + "-Model",
           Description = "A Demo Tabular data model with 1520 compatibility level."
       }
   };

   server.Databases.Add(database);
   database.Update(Microsoft.AnalysisServices.UpdateOptions.ExpandFull);

 

1 ACCEPTED SOLUTION

Hi @Clampazzo 

 

You could use SSMS to log into the XMLA end point and then script out the database?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

View solution in original post

6 REPLIES 6
GilbertQ
Super User
Super User

Hi @Clampazzo 

 

What I would do is to connect to the XMLA endpoint using tablet editor and create the roles using tabler editor. It would be a lot quicker and efficiently create your role and give them as working as expected.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Thanks for the reply @GilbertQ , while that would be easy to do I need to dynamically create these datasets.  They will all be DirectQuery but I am creating a new dataset (sometimes multiple) per client workspace.  So going in manually later would be difficult to do.  

If there's a way to copy a template dataset and then modify it using xmla (while keeping roles) that would be acceptable too.

Hi @Clampazzo 

 

One option might be to script after the database after you have created the roles. You can then use this script to reapply to other app workspaces with the roles as part of the script.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

That sounds like a possibl workaround... is there any documentation on how to do that?

Hi @Clampazzo 

 

You could use SSMS to log into the XMLA end point and then script out the database?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

I'm accepting as solution but I may ping back if I have more questions.  Thanks for your help.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors