QueryableExtensionMethodsExecuteTResult Method (IQueryable) |
Executes the specified IQueryable. Requires the IQueryable to implement ILLBLGenProQuery.
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax public static TResult Execute<TResult>(
this IQueryable source
)
<ExtensionAttribute>
Public Shared Function Execute(Of TResult) (
source As IQueryable
) As TResult
Parameters
- source
- Type: System.LinqIQueryable
The source.
Type Parameters
- TResult
- The type of the result.
Return Value
Type:
TResult
The results of source
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IQueryable. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions Remarks
Not usable wrapped inside a Linq query.
See Also