You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But to me it seems that if you specifically use the UsePostgreSqlEventStore extension, it should be safe to add without try (i.e. overrule the sane defaults).
The text was updated successfully, but these errors were encountered:
With the current extension methods, it would seem that the following would be selecting PostgreSql as persisitence:
Unfortunately that is not the case, since the
TryAdd
in this line:https://github.com/eventflow/EventFlow/blob/develop-v1/Source/EventFlow.PostgreSql/Extensions/EventFlowOptionsPostgresSqlEventStoreExtensions.cs#L34
Won't replace the
TryAdd
in this line:EventFlow/Source/EventFlow/EventFlowOptions.cs
Line 185 in bb46378
A current workaround would be to either do:
or
But to me it seems that if you specifically use the
UsePostgreSqlEventStore
extension, it should be safe to add without try (i.e. overrule the sane defaults).The text was updated successfully, but these errors were encountered: