@@ -75,7 +75,7 @@ public virtual PostgresBinaryExpression AtTimeZone(
7575 // PostgreSQL AT TIME ZONE flips the given type from timestamptz to timestamp and vice versa
7676 // See https://www.postgresql.org/docs/current/functions-datetime.html#FUNCTIONS-DATETIME-ZONECONVERT
7777 typeMapping ??= FlipTimestampTypeMapping (
78- timestamp . TypeMapping ?? ( RelationalTypeMapping ? ) _typeMappingSource . FindMapping ( timestamp . Type , Dependencies . Model ) ! ) ;
78+ timestamp . TypeMapping ?? _typeMappingSource . FindMapping ( timestamp . Type , Dependencies . Model ) ! ) ;
7979
8080 return new PostgresBinaryExpression (
8181 PostgresExpressionType . AtTimeZone ,
@@ -613,7 +613,7 @@ private SqlExpression ApplyTypeMappingOnArrayIndex(
613613 postgresArrayIndexExpression . Array . TypeMapping is NpgsqlArrayTypeMapping arrayMapping
614614 ? arrayMapping . ElementMapping
615615 : typeMapping
616- ?? ( RelationalTypeMapping ? ) _typeMappingSource . FindMapping ( postgresArrayIndexExpression . Type , Dependencies . Model ) ) ;
616+ ?? _typeMappingSource . FindMapping ( postgresArrayIndexExpression . Type , Dependencies . Model ) ) ;
617617 }
618618
619619 private SqlExpression ApplyTypeMappingOnILike ( PostgresILikeExpression ilikeExpression )
@@ -624,7 +624,7 @@ private SqlExpression ApplyTypeMappingOnILike(PostgresILikeExpression ilikeExpre
624624 : ExpressionExtensions . InferTypeMapping (
625625 ilikeExpression . Match , ilikeExpression . Pattern ,
626626 ilikeExpression . EscapeChar ) )
627- ?? ( RelationalTypeMapping ? ) _typeMappingSource . FindMapping ( ilikeExpression . Match . Type , Dependencies . Model ) ;
627+ ?? _typeMappingSource . FindMapping ( ilikeExpression . Match . Type , Dependencies . Model ) ;
628628
629629 return new PostgresILikeExpression (
630630 ApplyTypeMapping ( ilikeExpression . Match , inferredTypeMapping ) ,
0 commit comments