ExpressionPerformGetValue Method |
Produces the value for this expression for the entity passed in. This routine is used by IExpressionInterpret.GetValue and is used
to evaluate an expression at runtime for in-memory filtering/sorting.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax protected virtual Object PerformGetValue(
IEntityCore entity
)
Protected Overridable Function PerformGetValue (
entity As IEntityCore
) As Object
Parameters
- entity
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity.
Return Value
Type:
ObjectThe value the expression resolves to based on the entity passed in. Returns DBNull.Value if it resolves to null
See Also