Netmentor
Netmentor
with the inclusion of the service discovery the URL definition (at least) should be in code rather than in the configuration.
FormatterServices is obsolete sincer net8, search a new way of implement this properly; notes: https://learn.microsoft.com/en-us/dotnet/api/system.runtime.serialization.serializationinfo.-ctor?view=net-8.0#system-runtime-serialization-serializationinfo-ctor(system-type-system-runtime-serialization-iformatterconverter-system-boolean) search for the issue number on the code but it is in the aggregateRepository https://github.com/ElectNewt/Distribt/blob/main/src/Shared/Distribt.Shared.EventSourcing/AggregateRepository.cs#L39C44-L39C44
Hi, I am working to implement Orleans sagas in our system and I find that the `GrainReference` does not get removed from redis once the saga is completed. This is...