Click or drag to resize
FieldExtensionMethodsToValueTValue Method (IEntityFieldCore)
Placeholder method which is used in a Select(lambda func) projection inside the lambda to specify the type of the result of the passed in field.

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 TValue ToValue<TValue>(
	this IEntityFieldCore field
)

Parameters

field
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
The field.

Type Parameters

TValue
The type of the value.

Return Value

Type: TValue

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEntityFieldCore. 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).
Remarks
As this is a placeholder, it does nothing. It's replaced with a ProjectionRow indexer in a compiled lambda for the Select method
See Also