Click or drag to resize

FieldExtensionMethods Class

Class which defines extension methods defined on IEntityFieldCore implementing classes.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.QuerySpecFieldExtensionMethods

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax
public static class FieldExtensionMethods

The FieldExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAdd
Creates a new expression: leftoperand + rightoperand
Public methodStatic memberAnd
Creates a new expression: leftoperand AND rightoperand
Public methodStatic memberAs(IEntityField, String)
Specifies the field alias on the field, returning the field.
Public methodStatic memberAs(IEntityField2, String)
Specifies the field alias on the field, returning the field.
Public methodStatic memberAs(IEntityFieldCore, String)
Specifies the field alias on the field, returning the field.
Public methodStatic memberBitwiseAnd
Creates a new expression: leftoperand BitwiseAnd rightoperand
Public methodStatic memberBitwiseOr
Creates a new expression: leftoperand BitwiseOr rightoperand
Public methodStatic memberBitwiseXor
Creates a new expression: leftoperand BitwiseXor rightoperand
Public methodStatic memberCastToTResult
Specifies the result type of the field to be TResult
Public methodStatic memberDiv
Creates a new expression: leftoperand / rightoperand
Public methodStatic memberMod
Creates a new expression: leftoperand MOD rightoperand
Public methodStatic memberMul
Creates a new expression: leftoperand * rightoperand
Public methodStatic memberOr
Creates a new expression: leftoperand Or rightoperand
Public methodStatic memberSourceTField
Specifies the object alias (source) of the field, returning the field.
Public methodStatic memberSub
Creates a new expression: leftoperand - rightoperand
Public methodStatic memberToValueTValue(IEntityFieldCore)
Placeholder method which is used in a Select(lambda func) projection inside the lambda to specify the type of the result of the passed in field.
Public methodStatic memberToValueTValue(IEntityFieldCore, Int32)
Placeholder method which is used in a generated lambda from a call to Select<T>>(fields) to specify the type of the result of the passed in field and as well the ordinal the source field has in the actual projection of the query.
Top
See Also