Gets a field value from DB.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
T GetFieldValue<T>(
	EntityField2 lookupField,
	Object lookupValue,
	EntityField2 resultField
)
Visual Basic
Function GetFieldValue(Of T) ( 
	lookupField As EntityField2,
	lookupValue As Object,
	resultField As EntityField2
) As T
Visual C++
generic<typename T>
T GetFieldValue(
	EntityField2^ lookupField, 
	Object^ lookupValue, 
	EntityField2^ resultField
)
F#
abstract GetFieldValue : 
        lookupField : EntityField2 * 
        lookupValue : Object * 
        resultField : EntityField2 -> 'T 

Parameters

lookupField
Type: EntityField2
Lookup field
lookupValue
Type: System..::..Object
Filter value
resultField
Type: EntityField2
Result field

Type Parameters

T

Return Value

Type: T
Return DB value of result field

See Also