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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
smpa01
Community Champion
Community Champion

query serialization/string conversion

Is there any progrmatic way to convert any power query  to a string expected by Analysis Service tabular as part of the AS db.

 

Start from here

 

let
    Source = Sql.Database("sever", "db", [Query="select 1 as colA"])
in
    Source

 

 

 

smpa01_0-1729619636916.png

 

required output

 

    "let",
    "    Source = Sql.Database(\"server\", \"db\", [Query=\"select 1 as colA\"])",
    "in",
    "    Source"

 

 

Is there any native method available to do this in analysis-service-tabular library in .net and / python?

@AlexisOlson @ImkeF @GilbertQ @d_gosbell @mthierba 

 

 

Thank you in advance.


========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================
2 ACCEPTED SOLUTIONS
lbendlin
Super User
Super User

Why not use the Power Query code as is, as a single string?

View solution in original post

d_gosbell
Super User
Super User


@smpa01 wrote:

Is there any native method available to do this in analysis-service-tabular library in .net and / python?

 


If you use the analysis services .net library you just set the expression using the original string you posted It will automatically take care of the json encoding when scripting out to TMSL

View solution in original post

5 REPLIES 5
d_gosbell
Super User
Super User


@smpa01 wrote:

Is there any native method available to do this in analysis-service-tabular library in .net and / python?

 


If you use the analysis services .net library you just set the expression using the original string you posted It will automatically take care of the json encoding when scripting out to TMSL

@smpa01   For reference, it's the MPartitionSource.Expression property that will take any valid M code: https://learn.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.tabular.mpartitionsource.exp...
You won't need to worry about the serialization format going this route, as othes hvae pointed out already.

GilbertQ
Super User
Super User

Basically any double quote needs to be escaped with a backslash?





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

Proud to be a Super User!







Power BI Blog

smpa01
Community Champion
Community Champion

I have no idea what TOM expects the PQ to be and there is no documentation around it.


========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================
lbendlin
Super User
Super User

Why not use the Power Query code as is, as a single string?

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors