Click or drag to resize
QuerySpecExtensionMethodsSelectFrom Method (DynamicQuery, DynamicQuery)
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 SelectFrom(
	this DynamicQuery query,
	DynamicQuery toWrap
)

Parameters

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

Return Value

Type: DynamicQuery

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