Forum Discussion

smpa01's avatar
smpa01
Community Champion
1 year ago
Solved

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

 

 

 

 

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.

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


  • 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

5 Replies