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