From 847bdd33bf2f430b1c8a37bb3a3ff1c3b423f795 Mon Sep 17 00:00:00 2001 From: Maurycy Markowski Date: Wed, 3 May 2023 11:46:36 -0700 Subject: [PATCH] fixing a typo in quirk string for issue 30330 (#30784) --- .../Update/Internal/SqlServerUpdateSqlGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EFCore.SqlServer/Update/Internal/SqlServerUpdateSqlGenerator.cs b/src/EFCore.SqlServer/Update/Internal/SqlServerUpdateSqlGenerator.cs index 48661d21d52..0ee5b050f26 100644 --- a/src/EFCore.SqlServer/Update/Internal/SqlServerUpdateSqlGenerator.cs +++ b/src/EFCore.SqlServer/Update/Internal/SqlServerUpdateSqlGenerator.cs @@ -16,7 +16,7 @@ namespace Microsoft.EntityFrameworkCore.SqlServer.Update.Internal; public class SqlServerUpdateSqlGenerator : UpdateAndSelectSqlGenerator, ISqlServerUpdateSqlGenerator { private static readonly bool UseOldBehavior30330 - = AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue30330 ", out var enabled30330) && enabled30330; + = AppContext.TryGetSwitch("Microsoft.EntityFrameworkCore.Issue30330", out var enabled30330) && enabled30330; /// /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to