@@ -99,60 +99,5 @@ protected override void GenerateLimitOffset(SelectExpression selectExpression)
99
99
}
100
100
}
101
101
}
102
-
103
- /// <summary>
104
- /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
105
- /// the same compatibility standards as public APIs. It may be changed or removed without notice in
106
- /// any release. You should only use it directly in your code with extreme caution and knowing that
107
- /// doing so can result in application failures when updating to a new Entity Framework Core release.
108
- /// </summary>
109
- protected override Expression VisitSqlFunction ( SqlFunctionExpression sqlFunctionExpression )
110
- {
111
- Check . NotNull ( sqlFunctionExpression , nameof ( sqlFunctionExpression ) ) ;
112
-
113
- if ( ! sqlFunctionExpression . IsBuiltIn
114
- && string . IsNullOrEmpty ( sqlFunctionExpression . Schema ) )
115
- {
116
- sqlFunctionExpression = sqlFunctionExpression . IsNiladic
117
- ? new SqlFunctionExpression (
118
- schema : "dbo" ,
119
- sqlFunctionExpression . Name ,
120
- sqlFunctionExpression . IsNullable ,
121
- sqlFunctionExpression . Type ,
122
- sqlFunctionExpression . TypeMapping )
123
- : new SqlFunctionExpression (
124
- schema : "dbo" ,
125
- sqlFunctionExpression . Name ,
126
- sqlFunctionExpression . Arguments ,
127
- sqlFunctionExpression . IsNullable ,
128
- sqlFunctionExpression . ArgumentsPropagateNullability ,
129
- sqlFunctionExpression . Type ,
130
- sqlFunctionExpression . TypeMapping ) ;
131
- }
132
-
133
- return base . VisitSqlFunction ( sqlFunctionExpression ) ;
134
- }
135
-
136
- /// <summary>
137
- /// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
138
- /// the same compatibility standards as public APIs. It may be changed or removed without notice in
139
- /// any release. You should only use it directly in your code with extreme caution and knowing that
140
- /// doing so can result in application failures when updating to a new Entity Framework Core release.
141
- /// </summary>
142
- protected override Expression VisitTableValuedFunction ( TableValuedFunctionExpression tableValuedFunctionExpression )
143
- {
144
- Check . NotNull ( tableValuedFunctionExpression , nameof ( tableValuedFunctionExpression ) ) ;
145
-
146
- if ( string . IsNullOrEmpty ( tableValuedFunctionExpression . Schema ) )
147
- {
148
- tableValuedFunctionExpression = new TableValuedFunctionExpression (
149
- tableValuedFunctionExpression . Alias ,
150
- schema : "dbo" ,
151
- tableValuedFunctionExpression . Name ,
152
- tableValuedFunctionExpression . Arguments ) ;
153
- }
154
-
155
- return base . VisitTableValuedFunction ( tableValuedFunctionExpression ) ;
156
- }
157
102
}
158
103
}
0 commit comments