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

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

Return Value

Type: Object
Returns DB value of result field

Implements

IGenericRepository..::..GetFieldValue(EntityField2, Object, EntityField2, IDataAccessAdapter, AggregateFunction)

See Also