2 instantiations of SqlTableValuedFunctionCall
System.Data.Linq (2)
SqlClient\Common\SqlFactory.cs (1)
574
return new
SqlTableValuedFunctionCall
(rowType, clrType, Default(clrType), name, args, source);
SqlClient\Query\SqlDuplicator.cs (1)
398
SqlTableValuedFunctionCall nfc = new
SqlTableValuedFunctionCall
(fc.RowType, fc.ClrType, fc.SqlType, fc.Name, args, fc.SourceExpression);
17 references to SqlTableValuedFunctionCall
System.Data.Linq (17)
SqlClient\Common\SqlFactory.cs (1)
573
internal
SqlTableValuedFunctionCall
TableValuedFunctionCall(MetaType rowType, Type clrType, string name, IEnumerable<SqlExpression> args, Expression source) {
SqlClient\Common\SqlNode.cs (2)
591
SqlTableValuedFunctionCall
tvf = node as
SqlTableValuedFunctionCall
;
SqlClient\Common\SqlVisitor.cs (2)
197
result = this.VisitTableValuedFunctionCall((
SqlTableValuedFunctionCall
)node);
568
internal virtual SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {
SqlClient\Query\QueryConverter.cs (1)
1163
SqlTableValuedFunctionCall
functionCall = sql.TableValuedFunctionCall(function.ResultRowTypes[0].InheritanceRoot, mce.Method.ReturnType, function.MappedName, sqlParams, mce);
SqlClient\Query\SqlAliaser.cs (1)
44
internal override SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {
SqlClient\Query\SqlBinder.cs (2)
796
SqlTableValuedFunctionCall
fc = aref.Alias.Node as
SqlTableValuedFunctionCall
;
SqlClient\Query\SqlDuplicator.cs (2)
393
internal override SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {
398
SqlTableValuedFunctionCall
nfc = new SqlTableValuedFunctionCall(fc.RowType, fc.ClrType, fc.SqlType, fc.Name, args, fc.SourceExpression);
SqlClient\Query\SqlExpander.cs (1)
56
if (node is SqlTable || node is
SqlTableValuedFunctionCall
) {
SqlClient\Query\SqlFormatter.cs (2)
279
internal override SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {
1469
internal override SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {
SqlClient\Query\SqlReorderer.cs (2)
90
SqlTableValuedFunctionCall
tvf = a.Node as
SqlTableValuedFunctionCall
;
SqlClient\Query\SqlResolver.cs (1)
231
internal override SqlExpression VisitTableValuedFunctionCall(
SqlTableValuedFunctionCall
fc) {