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