Click or drag to resize
EntityCoreTFields Properties

The EntityCoreTFields generic type exposes the following members.

Properties
  NameDescription
Public propertyActiveContext
Gets / sets the active context this entity is in. Setting this property is adding the entity to the context, and it will make contained entities be added to the passed in context as well. If the entity is already in a context, setting this property has no effect. Setting this property is done by framework code, use the Context's Add/Get methods to work with contexts and entities.
Public propertyAuditorToUse
Gets or sets the Auditor for this entity.
Public propertyAuthorizerToUse
Gets or sets the Authorizer for this entity.
Public propertyConcurrencyPredicateFactoryToUse
Gets / sets the IConcurrencyPredicateFactory to use for GetConcurrencyPredicate(ConcurrencyPredicateType).
Protected propertyCustomPropertiesOfType
The custom properties for the type of this entity instance.
Protected propertyDataErrorInfoError
Gets the data error info error message set by SetEntityError
Protected propertyDataErrorInfoErrorsPerField
Gets the stored error messages per field name. Used for IDataErrorInfo. Use this property in your own code to re-channel the error messages through another interface.
Protected propertyDefaultRootElementName
Gets the default name of the root element for XML serialization.
Protected propertyEditCycleInProgress
Gets or sets a value indicating whether an edit cycle is in progress, started through databinding
Public propertyFields
The internal presentation of the data, which is an EntityFields object, which implements IEntityFields2.
Protected propertyFieldsCustomPropertiesOfType
The custom properties for the fields of the type of this entity instance. The returned Hashtable contains per fieldname a hashtable of name-value pairs.
Protected propertyInDesignMode
returns true if the classes are used in design-mode in vs.net.
Protected propertyIsDeserializing
Gets or sets a value indicating whether this instance is deserializing.
Public propertyIsDirty
Marker for the entity object if the object is 'dirty' (changed, true) or not (false). Affects/reads .Fields.IsDirty.
Public propertyIsNew
Marker for the entity object if the object is new and should be inserted when saved (true) or read from the database (false).
Protected propertyIsUpdateOnlyEntity
Gets a value indicating whether this instance is an update only entity. UpdateOnly entities are entities which are 'split off' from the main entity and only update rows in the database, never insert rows.
Protected propertyLLBLGenProEntityTypeValue
Returns the EntityType enum value for this entity.
Protected propertyLLBLGenProIsInHierarchyOfType
Gets the type of the hierarchy this entity is in.
Protected propertyLLBLGenProIsSubType
Gets or sets a value indicating whether this entity is a subtype
Protected propertyMarkedForDeletion
flag which is set when the entity is removed from an entity collection and added to a tracker.
Protected propertyObjectID
Gets / sets the unique Object ID which is created at runtime when the entity is instantiated. Can be used for external caches.
Protected propertySavedFields
Gets the saved fields.
Protected propertyTransaction
The ITransaction this ITransactionalElement implementing object is participating in. Only valid if ParticipatesInTransaction is true. If set to null, the ITransactionalElement is no longer participating in a transaction.
Public propertyValidator
The validator object used to validate the entity on several moments in the entity's life.
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate propertyIDataErrorInfoError
Gets an error message indicating what is wrong with this object.
Explicit interface implementationPrivate propertyIDataErrorInfoItem
Gets the String with the specified column name.
Explicit interface implementationPrivate propertyIEntityCoreCustomPropertiesOfType
The custom properties for the type of this entity instance.
Explicit interface implementationPrivate propertyIEntityCoreFields
Gets the fields object of this entity.
Explicit interface implementationPrivate propertyIEntityCoreFieldsCustomPropertiesOfType
The custom properties for the fields of the type of this entity instance. The returned Hashtable contains per fieldname a hashtable of name-value pairs.
Explicit interface implementationPrivate propertyIEntityCoreIsDeserializing
Returns true if this entity instance is in the middle of a deserialization process, for example during a ReadXml() call. For internal use only.
Explicit interface implementationPrivate propertyIEntityCoreIsUpdateOnlyEntity
Gets a value indicating whether this instance is an update only entity. UpdateOnly entities are entities which are 'split off' from the main entity and only update rows in the database, never insert rows.
Explicit interface implementationPrivate propertyCode exampleIEntityCoreLLBLGenProEntityName
Returns the full name for this entity, which is important for the DAO to find back persistence info for this entity.
Explicit interface implementationPrivate propertyIEntityCoreLLBLGenProEntityTypeValue
Returns the EntityType enum value for this entity.
Explicit interface implementationPrivate propertyIEntityCoreLLBLGenProIsInHierarchyOfType
Gets the type of the hierarchy this entity is in.
Explicit interface implementationPrivate propertyIEntityCoreMarkedForDeletion
flag which is set when the entity is removed from an entity collection and added to a tracker.
Explicit interface implementationPrivate propertyIEntityCoreObjectID
Gets / sets the unique Object ID which is created at runtime when the entity is instantiated. Can be used for external caches.
Explicit interface implementationPrivate propertyIEntityCorePrimaryKeyFieldInfos
Gets the primary key field infos. Similar to PrimaryKeyFields, but this property doesn't trigger field creation.
Explicit interface implementationPrivate propertyIEntityCorePrimaryKeyFields
List of IEntityField2 references which form the primary key. Reads/Affects .Fields.PrimaryKeyFields. If possible use PrimaryKeyFieldInfos instead.
Explicit interface implementationPrivate propertyIEntityCoreTypeDefaultValueProviderToUse
Gets or sets the TypeDefaultValue provider to use. This object is used to provide default values for value typed fields which are null and not of type Nullable(Of T)
Explicit interface implementationPrivate propertyITransactionalElementParticipatesInTransaction
Flag to check if the ITransactionalElement implementing object is participating in a transaction or not.
Explicit interface implementationPrivate propertyITransactionalElementTransaction
The ITransaction this ITransactionalElement implementing object is participating in. Only valid if ParticipatesInTransaction is true. If set to null, the ITransactionalElement is no longer participating in a transaction.
Top
See Also