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,
	IDataAccessAdapter adapter,
	AggregateFunction aggregateFunction
)
Visual Basic
Function GetFieldValue(Of T) ( 
	lookupField As EntityField2,
	lookupValue As Object,
	resultField As EntityField2,
	adapter As IDataAccessAdapter,
	aggregateFunction As AggregateFunction
) As T
Visual C++
generic<typename T>
T GetFieldValue(
	EntityField2^ lookupField, 
	Object^ lookupValue, 
	EntityField2^ resultField, 
	IDataAccessAdapter^ adapter, 
	AggregateFunction aggregateFunction
)
F#
abstract GetFieldValue : 
        lookupField : EntityField2 * 
        lookupValue : Object * 
        resultField : EntityField2 * 
        adapter : IDataAccessAdapter * 
        aggregateFunction : AggregateFunction -> 'T 

Parameters

lookupField
Type: EntityField2
Lookup field
lookupValue
Type: System..::..Object
Filter value
resultField
Type: EntityField2
Result field
adapter
Type: IDataAccessAdapter
Data adapter
aggregateFunction
Type: AggregateFunction
Aggregate function

Type Parameters

T

Return Value

Type: T
Return DB value of result field

See Also