From a48c20c45c229f5f03155b819b260aea36c9cfe6 Mon Sep 17 00:00:00 2001 From: Christopher Jolly Date: Mon, 27 Feb 2023 20:52:17 +0800 Subject: [PATCH] In a raw sql string the base delimiters and normalized to " and not `. --- test/EFCore.Jet.FunctionalTests/TestUtilities/JetTestStore.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/EFCore.Jet.FunctionalTests/TestUtilities/JetTestStore.cs b/test/EFCore.Jet.FunctionalTests/TestUtilities/JetTestStore.cs index 109b72d..92c9d6b 100644 --- a/test/EFCore.Jet.FunctionalTests/TestUtilities/JetTestStore.cs +++ b/test/EFCore.Jet.FunctionalTests/TestUtilities/JetTestStore.cs @@ -415,5 +415,8 @@ namespace EntityFrameworkCore.Jet.FunctionalTests.TestUtilities return connectionStringBuilder.ToString(); } + + public override string NormalizeDelimitersInRawString(string sql) + => sql.Replace("[", "`").Replace("]", "`"); } } \ No newline at end of file