We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b4a645 commit c059f1eCopy full SHA for c059f1e
Orm/Xtensive.Orm/Sql/Compiler/SqlCompilerContext.cs
@@ -151,9 +151,9 @@ internal SqlCompilerContext(SqlCompilerConfiguration configuration)
151
TableNameProvider = new SqlTableNameProvider(this);
152
ParameterNameProvider = new SqlParameterNameProvider(configuration);
153
Output = new ContainerNode();
154
-#pragma warning disable CS0618 // Type or member is obsolete
+#pragma warning disable CS0618, CS0612 // Type or member is obsolete
155
SqlNodeActualizer = new SqlNodeActualizer(configuration.DatabaseMapping, configuration.SchemaMapping);
156
-#pragma warning restore CS0618 // Type or member is obsolete
+#pragma warning restore CS0618, CS0612 // Type or member is obsolete
157
}
158
159
0 commit comments