Forum Discussion
query serialization/string conversion
- 1 year ago
Why not use the Power Query code as is, as a single string?
- 1 year ago
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 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
- mthierba1 year agoAdvocate I
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.expression?view=analysisservices-dotnet
You won't need to worry about the serialization format going this route, as othes hvae pointed out already.