Skip to content

Commit a82cae1

Browse files
author
Joost Molenkamp
committed
docs(mssql): fix method typo
1 parent 4c070a0 commit a82cae1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Documentation/integration/mssql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
8686
services.AddEventFlow(o =>
8787
o.ConfigureMsSql(config)
88-
.UseMssqlSnapshotStore());
88+
.UseMsSqlSnapshotStore());
8989
```
9090

9191
Provision the schema using the bundled scripts.

0 commit comments

Comments
 (0)