Skip to content

Commit

Permalink
Remove SqlServerQueryTranslationPostprocessorFactory _typeMappingSour…
Browse files Browse the repository at this point in the history
…ce (#34429)
  • Loading branch information
SimonCropp committed Aug 14, 2024
1 parent 8e9525f commit 4305f7f
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ namespace Microsoft.EntityFrameworkCore.SqlServer.Query.Internal;
/// </summary>
public class SqlServerQueryTranslationPostprocessorFactory : IQueryTranslationPostprocessorFactory
{
private readonly IRelationalTypeMappingSource _typeMappingSource;

/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
Expand All @@ -21,12 +19,10 @@ public class SqlServerQueryTranslationPostprocessorFactory : IQueryTranslationPo
/// </summary>
public SqlServerQueryTranslationPostprocessorFactory(
QueryTranslationPostprocessorDependencies dependencies,
RelationalQueryTranslationPostprocessorDependencies relationalDependencies,
IRelationalTypeMappingSource typeMappingSource)
RelationalQueryTranslationPostprocessorDependencies relationalDependencies)
{
Dependencies = dependencies;
RelationalDependencies = relationalDependencies;
_typeMappingSource = typeMappingSource;
}

/// <summary>
Expand Down

0 comments on commit 4305f7f

Please sign in to comment.