1 type derived from SqlFunctionCall
System.Data.Linq (1)
SqlClient\Common\SqlNode.cs (1)
2176internal class SqlTableValuedFunctionCall : SqlFunctionCall {
3 instantiations of SqlFunctionCall
System.Data.Linq (3)
SqlClient\Common\SqlFactory.cs (2)
565return new SqlFunctionCall(clrType, Default(clrType), name, args, source); 570return new SqlFunctionCall(clrType, sqlType, name, args, source);
SqlClient\Query\SqlDuplicator.cs (1)
391return new SqlFunctionCall(fc.ClrType, fc.SqlType, fc.Name, args, fc.SourceExpression);
21 references to SqlFunctionCall
System.Data.Linq (21)
SqlClient\Common\SqlFactory.cs (2)
564internal SqlFunctionCall FunctionCall(Type clrType, string name, IEnumerable<SqlExpression> args, Expression source) { 569internal SqlFunctionCall FunctionCall(Type clrType, ProviderType sqlType, string name, IEnumerable<SqlExpression> args, Expression source) {
SqlClient\Common\SqlVisitor.cs (2)
194result = this.VisitFunctionCall((SqlFunctionCall)node); 562internal virtual SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\Common\TypeSystemProvider.cs (1)
68internal abstract ProviderType ReturnTypeOfFunction(SqlFunctionCall functionCall);
SqlClient\Query\LongTypeConverter.cs (1)
105internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\Query\SqlBinder.cs (1)
143internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\Query\SqlComparer.cs (4)
201SqlFunctionCall f1 = (SqlFunctionCall)node1; 202SqlFunctionCall f2 = (SqlFunctionCall)node2;
SqlClient\Query\SqlDuplicator.cs (1)
386internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\Query\SqlFormatter.cs (1)
260internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\Query\SqlMethodCallConverter.cs (1)
1784SqlFunctionCall stuffCall = sql.FunctionCall(
SqlClient\Query\SqlMethodTransformer.cs (4)
19internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) { 22if (result is SqlFunctionCall) { 23SqlFunctionCall resultFunctionCall = (SqlFunctionCall)result;
SqlClient\Query\SqlRetyper.cs (1)
208internal override SqlExpression VisitFunctionCall(SqlFunctionCall fc) {
SqlClient\SqlTypeSystemProvider.cs (2)
1177private ProviderType[] GetArgumentTypes(SqlFunctionCall fc) { 1193internal override ProviderType ReturnTypeOfFunction(SqlFunctionCall functionCall) {