Click or drag to resize
QuerySpecExtensionMethodsSelectFromT Method (DynamicQuery, DynamicQueryT)
Specifies a projection on 'query' which is mimics the projection of the query 'toWrap': it contains fields which target each field in 'toWrap's projection. It wraps 'toWrap' as the From clause for 'query', overwriting query's From clause, if set.

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static DynamicQuery<T> SelectFrom<T>(
	this DynamicQuery query,
	DynamicQuery<T> toWrap
)

Parameters

query
Type: SD.LLBLGen.Pro.QuerySpecDynamicQuery
The query.
toWrap
Type: SD.LLBLGen.Pro.QuerySpecDynamicQueryT
To wrap.

Type Parameters

T
The return type of the elements of the query

Return Value

Type: DynamicQueryT

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DynamicQuery. 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