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!