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