From a269f038844bcd82788ccbc9a0124b796446eef0 Mon Sep 17 00:00:00 2001 From: JMolenkamp Date: Sat, 10 Jan 2026 23:01:49 +0100 Subject: [PATCH] docs(mssql): fix method type --- Documentation/integration/mssql.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/integration/mssql.md b/Documentation/integration/mssql.md index 1c6f2b5b4..5a73b0e7e 100644 --- a/Documentation/integration/mssql.md +++ b/Documentation/integration/mssql.md @@ -39,7 +39,7 @@ public void ConfigureServices(IServiceCollection services) .New .SetConnectionString(@"Server=.\SQLEXPRESS;Database=MyApp;User Id=sa;Password=Pa55w0rd!")) .UseMssqlEventStore() - .UseMssqlSnapshotStore() + .UseMsSqlSnapshotStore() .UseMssqlReadModel() .UseMssqlReadModel(); }); @@ -80,12 +80,12 @@ Run this during deployment or application startup. The migrator is idempotent, s ## Snapshot store -Snapshot persistence reduces load time for long-running aggregates. Enable it with `.UseMssqlSnapshotStore()` after calling `ConfigureMsSql`. +Snapshot persistence reduces load time for long-running aggregates. Enable it with `.UseMsSqlSnapshotStore()` after calling `ConfigureMsSql`. ```csharp services.AddEventFlow(o => o.ConfigureMsSql(config) - .UseMssqlSnapshotStore()); + .UseMsSqlSnapshotStore()); ``` Provision the schema using the bundled scripts.