I have cases where I would like to apply a custom JsConfig<T>.SerializeFn = x => x.ToString();
within a specific scope inside my app, but I can’t seem to find the correct syntax.
When I try using (var js = JsConfig.CreateScope(""))
there is no hook to apply the custom serialization on the resulting jsconfigscope object.
Any suggestions?