Custom Serialization for Learning Persistence?

So to add custom serialization on SqlPersistence it is recommended to add the following lines:

var sagaSettings = persistence.SagaSettings();
sagaSettings.JsonSettings(JsonConvert.DefaultSettings());

However, the SagaSettings extension method is not implemented for LearningPersistence, is there a way to do this? Using .net Core 2.2, thanks!

Hi Ryan

The learning persistence makes choices and assumptions that are geared towards easy starting with the platform and as little configuration as possible to get an F5 experience from the start. Switch the saga serializer settings is not supported with the learning persistence. It uses a hardcoded and simple json serializer.

Regards
Daniel