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

Parameters

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

Return Value

Type: Object
Return DB value of result field

See Also