Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public static TEntityCollection Execute<TEntityCollection>(
	this IQueryable q
)
where TEntityCollection : IEntityCollection2
Visual Basic
<ExtensionAttribute> 
Public Shared Function Execute(Of TEntityCollection As IEntityCollection2) ( 
	q As IQueryable
) As TEntityCollection
Visual C++
public:
[ExtensionAttribute]
generic<typename TEntityCollection>
where TEntityCollection : IEntityCollection2
static TEntityCollection Execute(
	IQueryable^ q
)
F#
static member Execute : 
        q : IQueryable -> 'TEntityCollection  when 'TEntityCollection : IEntityCollection2

Type Parameters

TEntityCollection

Return Value

Type: TEntityCollection

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).

See Also