diff --git a/EFCore.sln.DotSettings b/EFCore.sln.DotSettings
index 6881961da98..d9724cb9987 100644
--- a/EFCore.sln.DotSettings
+++ b/EFCore.sln.DotSettings
@@ -301,9 +301,9 @@ The .NET Foundation licenses this file to you under the MIT license.
True
True
True
- True
True
True
+ True
True
True
True
@@ -325,7 +325,10 @@ The .NET Foundation licenses this file to you under the MIT license.
True
True
True
+ True
True
+ True
+ True
True
True
True
diff --git a/src/EFCore.Cosmos/Query/Internal/CosmosQueryCompilationContext.cs b/src/EFCore.Cosmos/Query/Internal/CosmosQueryCompilationContext.cs
index c7c1ab05b34..1c34faa499f 100644
--- a/src/EFCore.Cosmos/Query/Internal/CosmosQueryCompilationContext.cs
+++ b/src/EFCore.Cosmos/Query/Internal/CosmosQueryCompilationContext.cs
@@ -19,8 +19,9 @@ public class CosmosQueryCompilationContext : QueryCompilationContext
///
public CosmosQueryCompilationContext(
QueryCompilationContextDependencies dependencies,
- bool async)
- : base(dependencies, async)
+ bool async,
+ bool precompiling)
+ : base(dependencies, async, precompiling)
{
}
diff --git a/src/EFCore.Design/Design/DesignTimeServiceCollectionExtensions.cs b/src/EFCore.Design/Design/DesignTimeServiceCollectionExtensions.cs
index 60d4ef6301a..ce83a43ec36 100644
--- a/src/EFCore.Design/Design/DesignTimeServiceCollectionExtensions.cs
+++ b/src/EFCore.Design/Design/DesignTimeServiceCollectionExtensions.cs
@@ -3,6 +3,7 @@
using Microsoft.EntityFrameworkCore.Design.Internal;
using Microsoft.EntityFrameworkCore.Migrations.Internal;
+using Microsoft.EntityFrameworkCore.Query.Internal;
using Microsoft.EntityFrameworkCore.Scaffolding.Internal;
namespace Microsoft.EntityFrameworkCore.Design;
diff --git a/src/EFCore.Design/Design/Internal/CSharpHelper.cs b/src/EFCore.Design/Design/Internal/CSharpHelper.cs
index a136be6096f..077bc862256 100644
--- a/src/EFCore.Design/Design/Internal/CSharpHelper.cs
+++ b/src/EFCore.Design/Design/Internal/CSharpHelper.cs
@@ -1556,6 +1556,7 @@ private string ToSourceCode(SyntaxNode node)
public virtual string Statement(
Expression node,
ISet collectedNamespaces,
+ ISet unsafeAccessors,
IReadOnlyDictionary