@@ -35,7 +35,7 @@ internal sealed partial class Translator
3535 {
3636 private static IReadOnlyDictionary < Parameter < Tuple > , Tuple > EmptyTupleParameterBindings { get ; } = new Dictionary < Parameter < Tuple > , Tuple > ( ) ;
3737
38- private static readonly ParameterExpression parameterContextParam = Expression . Parameter ( WellKnownOrmTypes . ParameterContext , "context" ) ;
38+ private static readonly ParameterExpression ParameterContextParam = Expression . Parameter ( WellKnownOrmTypes . ParameterContext , "context" ) ;
3939 private static readonly ConstantExpression
4040 NullKeyExpression = Expression . Constant ( null , WellKnownOrmTypes . Key ) ,
4141 FalseExpression = Expression . Constant ( false ) ,
@@ -511,7 +511,7 @@ private Expression ConstructFreeTextQueryRoot(Type elementType, System.Collectio
511511 if ( compiledQueryScope == null ) {
512512 var originalSearchCriteria = ( Expression < Func < string > > ) searchCriteria ;
513513 var body = originalSearchCriteria . Body ;
514- var searchCriteriaLambda = FastExpression . Lambda < Func < ParameterContext , string > > ( body , parameterContextParam ) ;
514+ var searchCriteriaLambda = FastExpression . Lambda < Func < ParameterContext , string > > ( body , ParameterContextParam ) ;
515515 compiledParameter = searchCriteriaLambda . CachingCompile ( ) ;
516516 }
517517 else {
@@ -578,7 +578,7 @@ private Expression ConstructContainsTableQueryRoot(Type elementType, System.Coll
578578 func . Invoke ( SearchConditionNodeFactory . CreateConditonRoot ( ) ) . AcceptVisitor ( conditionCompiler ) ;
579579
580580 var preparedSearchCriteria = FastExpression . Lambda < Func < ParameterContext , string > > (
581- Expression . Constant ( conditionCompiler . CurrentOutput ) , parameterContextParam ) ;
581+ Expression . Constant ( conditionCompiler . CurrentOutput ) , ParameterContextParam ) ;
582582
583583 if ( compiledQueryScope == null ) {
584584 compiledParameter = preparedSearchCriteria . CachingCompile ( ) ;
0 commit comments