Click or drag to resize

QuerySpecExtensionMethods.SelectFrom<T> Method (DynamicQuery, DynamicQuery<T>)

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.10.0.0 (5.10.0)
Syntax
public static DynamicQuery<T> SelectFrom<T>(
	this DynamicQuery query,
	DynamicQuery<T> toWrap
)

Parameters

query
Type: SD.LLBLGen.Pro.QuerySpec.DynamicQuery
The query.
toWrap
Type: SD.LLBLGen.Pro.QuerySpec.DynamicQuery<T>
To wrap.

Type Parameters

T
The return type of the elements of the query

Return Value

Type: DynamicQuery<T>

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