Microsoft SQL Server

To setup EventFlow Microsoft SQL Server integration, install the NuGet package EventFlow.MsSql and add this to your EventFlow setup.

IRootResolver rootResolver = EventFlowOptions.New
  .ConfigureMsSql(MsSqlConfiguration.New
    .SetConnectionString(@"Server=.\SQLEXPRESS;Database=MyApp;User Id=sa;Password=???"))
  ...
  .CreateResolver();

After setting up Microsoft SQL Server support in EventFlow, you can continue to configure it.