Share via


QueryTranslationPostprocessor Class

Definition

A class that post-processes the translated query. This class allows to process the generated server query expression and the associated shaper expression.

This type is typically used by database providers (and other extensions). It is generally not used in application code.

[System.Runtime.CompilerServices.Nullable(0)]
public class QueryTranslationPostprocessor
public class QueryTranslationPostprocessor
[<System.Runtime.CompilerServices.Nullable(0)>]
type QueryTranslationPostprocessor = class
type QueryTranslationPostprocessor = class
Public Class QueryTranslationPostprocessor
Inheritance
QueryTranslationPostprocessor
Derived
Attributes

Remarks

See Implementation of database providers and extensions and How EF Core queries work for more information and examples.

Constructors

Name Description
QueryTranslationPostprocessor(QueryTranslationPostprocessorDependencies, QueryCompilationContext)

Creates a new instance of the QueryTranslationPostprocessor class.

QueryTranslationPostprocessor(QueryTranslationPostprocessorDependencies)

Properties

Name Description
Dependencies

Dependencies for this service.

QueryCompilationContext

The query compilation context object for current compilation.

Methods

Name Description
Process(Expression)

Applies postprocessing transformations to the translated query.

Applies to