DynamicQueryEngineBaseCheckIfFieldNeedsInsertAction Method |
Checks the if field needs insert action.
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 bool CheckIfFieldNeedsInsertAction(
IEntityFieldCore field
)
Protected Overridable Function CheckIfFieldNeedsInsertAction (
field As IEntityFieldCore
) As Boolean
Parameters
- field
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
Field.
Return Value
Type:
Booleantrue if the field needs to be included in the insert query. This is the case if the field is
changed or not read only, or that it is linked to a supertype field (which indicates that the field will be receiving its value later)
or that it has an expression set.
See Also