File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Documentation/integration Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public void ConfigureServices(IServiceCollection services)
3939 .New
4040 .SetConnectionString (@" Server=.\SQLEXPRESS;Database=MyApp;User Id=sa;Password=Pa55w0rd!" ))
4141 .UseMssqlEventStore ()
42- .UseMssqlSnapshotStore ()
42+ .UseMsSqlSnapshotStore ()
4343 .UseMssqlReadModel <UserReadModel >()
4444 .UseMssqlReadModel <UserNicknameReadModel , UserNicknameReadModelLocator >();
4545 });
@@ -80,12 +80,12 @@ Run this during deployment or application startup. The migrator is idempotent, s
8080
8181## Snapshot store
8282
83- Snapshot persistence reduces load time for long-running aggregates. Enable it with ` .UseMssqlSnapshotStore () ` after calling ` ConfigureMsSql ` .
83+ Snapshot persistence reduces load time for long-running aggregates. Enable it with ` .UseMsSqlSnapshotStore () ` after calling ` ConfigureMsSql ` .
8484
8585``` csharp
8686services .AddEventFlow (o =>
8787 o .ConfigureMsSql (config )
88- .UseMssqlSnapshotStore ());
88+ .UseMsSqlSnapshotStore ());
8989```
9090
9191Provision the schema using the bundled scripts.
You can’t perform that action at this time.
0 commit comments