thread
1 TopicPowerBI Expression Evaluation Thread Delegation
I am working on locale-aware formatting using a custom C# helper, whose DLL is referenced in the report server. I am updating the Thread Culture to the specific culture so that the ToString() can format the datetime and amount correctly. I didn't want to use ToString(format, CultureProvider) as this is slower than ToString() and can take more time to load the data if the report contains 100k or more rows. I set the ThreadCulture in the constructor of my helper class and create an instance of it in the report. I am using this approach to have a centralised formatting helper and have control over it. Is it possible that the report may delegate the expression evaluation to a different Thread?Solved919Views0likes6Comments