11 references to Compile
System.Core (1)
Microsoft\Scripting\Ast\LambdaExpression.cs (1)
149return Compile();
System.Data.Entity (1)
System\Data\Objects\ELinq\Funcletizer.cs (1)
646_cachedDelegate = Expression.Lambda(delegateType, _funcletizedExpression, _compiledQueryParameters).Compile();
System.Data.Linq (4)
SqlClient\Query\Funcletizer.cs (1)
59return Expression.Invoke(Expression.Constant(Expression.Lambda(e).Compile()));
SqlClient\Query\SqlFormatter.cs (1)
455value = cp.Accessor.Compile().DynamicInvoke(new object[] { null });
SqlClient\Query\SqlParameterizer.cs (1)
292this.currentParams.Add(new SqlParameterInfo(p, cp.Accessor.Compile()));
SqlClient\Reader\ObjectReaderCompiler.cs (1)
809Delegate d = cp.Accessor.Compile();
System.Data.Services.Client (4)
System\Data\Services\Client\ALinq\Evaluator.cs (1)
168Delegate fn = lambda.Compile();
System\Data\Services\Client\AtomMaterializer.cs (1)
1124return (Action<object, object>)lambda.Compile();
System\Data\Services\Client\ProjectionPlanCompiler.cs (2)
100result.Plan = (Func<object, object, Type, object>)((LambdaExpression)plan).Compile(); 687propertyFunctions.Add((Func<object, object, Type, object>) propertyLambda.Compile());
System.IdentityModel (1)
System\IdentityModel\CryptoHelper.cs (1)
1285delegateFunction = creationFunction.Compile() as Func<object>;