EntityPropertyDescriptor Constructor |
CTor
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 public EntityPropertyDescriptor(
IEntityFieldCore field,
Type typeOfBoundObject,
bool isReadOnly
)
Public Sub New (
field As IEntityFieldCore,
typeOfBoundObject As Type,
isReadOnly As Boolean
)
Parameters
- field
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
Field which is exposed as a property and which has to be described in a PropertyDescriptor - typeOfBoundObject
- Type: SystemType
The type of object this property is a property of - isReadOnly
- Type: SystemBoolean
True if the field is an identity field/primary key field and the entity itself is not new
See Also