1 instantiation of DbLambdaExpression
System.Data.Entity (1)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (1)
1539return new DbLambdaExpression(resultType, lambda, validArguments);
21 references to DbLambdaExpression
System.Data.Entity (21)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (2)
252/// Visitor pattern method for <see cref="DbLambdaExpression"/>. 256public override void Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\DbExpressionVisitor.cs (1)
163public virtual void Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\DbExpressionVisitor_TResultType.cs (1)
187public virtual TResultType Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\DbLambda.cs (1)
22/// Represents a Lambda function that can be invoked to produce a <see cref="DbLambdaExpression"/>.
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
438public override DbExpression Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (5)
1498/// Creates a new <see cref="DbLambdaExpression"/> representing the application of the specified Lambda function to the given arguments. 1511public static DbLambdaExpression Invoke(this DbLambda lambda, IEnumerable<DbExpression> arguments) 1517/// Creates a new <see cref="DbLambdaExpression"/> representing the application of the specified Lambda function to the given arguments. 1530public static DbLambdaExpression Invoke(this DbLambda lambda, params DbExpression[] arguments) 1535private static DbLambdaExpression InvokeLambda(DbLambda lambda, IEnumerable<DbExpression> arguments)
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
476public override void Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
319public override void Visit(DbLambdaExpression expression)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
535public override TreeNode Visit(DbLambdaExpression expression)
System\Data\Mapping\Update\Internal\UpdateExpressionVisitor.cs (1)
132public override TReturn Visit(DbLambdaExpression expression)
System\Data\Mapping\ViewValidator.cs (1)
555public override DbExpressionEntitySetInfo Visit(DbLambdaExpression expression)
System\Data\Objects\Internal\ObjectSpanRewriter.cs (2)
338DbLambdaExpression lambdaExpression = expression as DbLambdaExpression;
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1079public override Node Visit(DbLambdaExpression e)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
379public override bool Visit(DbLambdaExpression expression)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (1)
1346public override ISqlFragment Visit(DbLambdaExpression expression)