Closed mathiasnohall closed 4 years ago
c.Has<ISagaSerializer>() returns false even if a custom instance of ISagaSerializer is present in config. Using the primary = false seems to fix this issue..
c.Has<ISagaSerializer>()
ISagaSerializer
primary = false
Excellent, thanks! 🙂 your fix has been published in Rebus.SqlServer 7.1.6 just now 👍
c.Has<ISagaSerializer>()
returns false even if a custom instance ofISagaSerializer
is present in config. Using theprimary = false
seems to fix this issue..