CompiledQuery.Compile(Of TArg0, TResult) Method (Expression(Of Func(Of TArg0, TResult)))
.NET Framework (current version)
Compiles the query.
Assembly: System.Data.Linq (in System.Data.Linq.dll)
Public Shared Function Compile(Of TArg0 As DataContext, TResult) ( query As Expression(Of Func(Of TArg0, TResult)) ) As Func(Of TArg0, TResult)
Parameters
- query
-
Type:
System.Linq.Expressions.Expression(Of Func(Of TArg0, TResult))
The query expression to be compiled.
Return Value
Type: System.Func(Of TArg0, TResult)A generic delegate that represents the compiled query.
Type Parameters
- TArg0
Represents the type of the parameter that has to be passed in when executing the delegate returned by the Compile(Of TArg0, TResult) method.
- TResult
The type of T in the System.Collections.Generic.IEnumerable(Of T) returned when executing the delegate returned by the Compile(Of TArg0, TResult) method.
.NET Framework
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Show: