EntityBase2 Class |
Namespace: SD.LLBLGen.Pro.ORMSupportClasses
The EntityBase2 type exposes the following members.
Name | Description | |
---|---|---|
EntityBase2 |
CTor
| |
EntityBase2(SerializationInfo, StreamingContext) |
Private CTor for deserialization
|
Name | Description | |
---|---|---|
ActiveContext |
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.
(Inherited from EntityCoreTFields.) | |
AuditorToUse |
Gets or sets the Auditor for this entity.
(Inherited from EntityCoreTFields.) | |
AuthorizerToUse |
Gets or sets the Authorizer for this entity.
(Inherited from EntityCoreTFields.) | |
ConcurrencyPredicateFactoryToUse |
Gets / sets the IConcurrencyPredicateFactory to use for GetConcurrencyPredicate(ConcurrencyPredicateType).
(Inherited from EntityCoreTFields.) | |
CustomPropertiesOfType | The custom properties for the type of this entity instance. (Inherited from EntityCoreTFields.) | |
DataErrorInfoError |
Gets the data error info error message set by SetEntityError
(Inherited from EntityCoreTFields.) | |
DataErrorInfoErrorsPerField |
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.
(Inherited from EntityCoreTFields.) | |
DefaultRootElementName |
Gets the default name of the root element for XML serialization.
(Inherited from EntityCoreTFields.) | |
EditCycleInProgress |
Gets or sets a value indicating whether an edit cycle is in progress, started through databinding
(Inherited from EntityCoreTFields.) | |
Fields |
The internal presentation of the data, which is an EntityFields object, which implements IEntityFields2.
(Inherited from EntityCoreTFields.) | |
FieldsCustomPropertiesOfType | 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. (Inherited from EntityCoreTFields.) | |
InDesignMode |
returns true if the classes are used in design-mode in vs.net.
(Inherited from EntityCoreTFields.) | |
IsDeserializing |
Gets or sets a value indicating whether this instance is deserializing.
(Inherited from EntityCoreTFields.) | |
IsDirty |
Marker for the entity object if the object is 'dirty' (changed, true) or not (false). Affects/reads .Fields.IsDirty.
(Inherited from EntityCoreTFields.) | |
IsNew |
Marker for the entity object if the object is new and should be inserted when saved (true) or read from the
database (false).
(Inherited from EntityCoreTFields.) | |
IsUpdateOnlyEntity |
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.
(Inherited from EntityCoreTFields.) | |
LLBLGenProEntityTypeEnumType |
The EntityType enum type
(Inherited from EntityCoreTFields.) | |
MarkedForDeletion |
flag which is set when the entity is removed from an entity collection and added to a tracker.
(Inherited from EntityCoreTFields.) | |
ObjectID |
Gets / sets the unique Object ID which is created at runtime when the entity is instantiated. Can be used for external caches.
(Inherited from EntityCoreTFields.) | |
SavedFields |
Gets the saved fields.
(Inherited from EntityCoreTFields.) | |
Transaction |
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.
(Inherited from EntityCoreTFields.) | |
Validator |
The validator object used to validate the entity on several moments in the entity's life.
(Inherited from EntityCoreTFields.) |
Name | Description | |
---|---|---|
AddInternalsToContext |
Adds the internals to context.
(Inherited from EntityCoreTFields.) | |
AddToMemberEntityCollectionsQueue |
Adds the member collections to the collections queue (base first)
| |
CallSetRelatedEntityDuringDeserialization |
Calls the SetRelatedEntity method on the related entity specified during fast serialization. Used in 1:1 properties of generated entities in
the deserialization branch of the setter.
| |
CheckForRefetch |
Will check if the entity should refetch itself. Will use the factory pattern trick.
Refetching occurs when the fields are marked OutOfSync and thus not dirty.
(Inherited from EntityCoreTFields.) | |
CheckIfCurrentFieldValueIsNull | Obsolete.
Checks if the current value of the field on the index specified is null / not defined.
(Inherited from EntityCoreTFields.) | |
CheckIfIsSubTypeOf | Determines whether this entity is a subType of the entity represented by the passed in enum value, which represents a value in the EntityType enum (Inherited from EntityCoreTFields.) | |
CheckOneWayRelations |
Checks if the relation mapped by the property with the name specified is a one way / single sided relation. If the passed in name is null, it
will return true if the entity has any single-sided relation
| |
CreateAuditor |
Creates the auditor object for this entity. Routine is called when the entity is constructed. Implement in an entity
class to set a particular entity auditor object at construction time. Use this method if you don't want to use
LLBLGen Pro's build in dependency injection mechanism.
(Inherited from EntityCoreTFields.) | |
CreateAuthorizer |
Creates the authorizer object for this entity. Routine is called when the entity is constructed. Implement in an entity
class to set a particular entity authorizer object at construction time. Use this method if you don't want to use
LLBLGen Pro's build in dependency injection mechanism.
(Inherited from EntityCoreTFields.) | |
CreateConcurrencyPredicateFactory |
Creates the concurrency predicate factory for this entity. Routine is called from the entity constructor. Implement in an entity
class to set a particular ConcurrentyPredicateFactory object at construction time. Use this method if you don't want to use
LLBLGen Pro's build in dependency injection mechanism.
(Inherited from EntityCoreTFields.) | |
CreateEntityCollectionForTypeT |
Returns a new EntityCollection instance of the generated type for the specific entity type T
| |
CreateEntityFactory |
Creates the factory.
| |
CreateEntityFactoryCore |
Creates a new entity factory instance related to this entity.
(Overrides EntityCoreTFieldsCreateEntityFactoryCore.) | |
CreateFields | Creates entity fields object for this entity. Used in constructor to setup this entity in a polymorphic scenario. (Overrides EntityCoreTFieldsCreateFields.) | |
CreateMemberEntityCollectionsQueue |
Creates the member entity collections queue.
| |
CreateRelationInfoForNavigator |
Creates a new RelationPredicateBucket with the predicates to filter on the related entities represented by the navigator specified.
| |
CreateTypeDefaultValueProvider |
Creates the ITypeDefaultValue instance used to provide default values for value types which aren't of type nullable(of T)
(Inherited from EntityCoreTFields.) | |
CreateValidator |
Creates the validator object for this entity. Routine is called when the entity is constructed. Implement in an entity
class to set a particular entity validator object at construction time. Use this method if you don't want to use
LLBLGen Pro's build in dependency injection mechanism.
(Inherited from EntityCoreTFields.) | |
DeserializeEntityCoreData |
Private CTor for deserialization
(Inherited from EntityCoreTFields.) | |
DeserializeMemberData |
Deserializes the member data of this instance.
| |
DeserializeOwnedData |
Method which restores owned data - i.e. considered private to this entity
and not shared with any external object
| |
DesetupSync |
Destructs the synchronization setup between the related entity and this entity, related over the member specified.
(Inherited from EntityCoreTFields.) | |
DetachFromGraph |
Detaches this entity from all referencing entities and resets all references in this entity to other entities, including many-to-many relationships.
| |
DiscardSavedFields |
Removes all saved field sets from the internal hashtable, clearing up space. This method is also called when
an entity is saved.
(Inherited from EntityCoreTFields.) | |
Entity2Xml |
Produces the actual XML for this entity, recursively. Because it recurses through referenced entities, it keeps track of which objects are processed
so cyclic references are not resulting in cyclic recursion and thus a crash.
(Overrides EntityCoreTFieldsEntity2Xml(String, XmlWriter, DictionaryGuid, IEntityCore, XmlFormatAspect, Boolean, Boolean).) | |
Equals |
Compares passed in object with the given object. This is a compare of PK fields. These have to be the same in VALUES.
When the values are not the same, or the type is not the same as the current type, false is returned, true otherwise.
When this doesn't have any PK fields, all fields are compared. null values are considered as the same value.
(Inherited from EntityCoreTFields.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
FixupDeserialization(IFieldInfoProvider) |
Fixes deserialization empty references, because fieldinfo isn't serialized into the data.
(Inherited from EntityCoreTFields.) | |
FixupDeserialization(IFieldInfoProvider, IPersistenceInfoProvider) |
Fixes deserialization empty references, because fieldinfo isn't serialized into the data.
(Inherited from EntityCoreTFields.) | |
FlagAllFieldsAsChanged |
A method to call OnPropertyChanged for all fields to signal to bound controls that all fields have been changed.
(Inherited from EntityCoreTFields.) | |
GetAdditionalRelatedData |
Gets the additional related data, next to the data returned by GetRelatedData. This method appends the additional related data to
the passed in toAppendTo dictionary. Key is the property name, value is the entity object or entity collection represented by the property.
(Inherited from EntityCoreTFields.) | |
GetAllRelations |
Gets a list of all the EntityRelation objects the type of this instance has.
(Inherited from EntityCoreTFields.) | |
GetConcurrencyPredicate |
Creates the requested predicate of the type specified. If no IConcurrencyPredicateFactory instance is stored in this entity instance, null
is returned.
(Inherited from EntityCoreTFields.) | |
GetCurrentFieldValue |
Gets the current value of the EntityField2 with the index fieldIndex.
(Inherited from EntityCoreTFields.) | |
GetDependentRelatedEntitiesT |
Gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields). These
entities will have to be persisted before this entity during a recursive save.
(Inherited from EntityCoreTFields.) | |
GetDependentRelatedEntityCoreInstances |
Gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields). These
entities will have to be persisted before this entity during a recursive save.
(Overrides EntityCoreTFieldsGetDependentRelatedEntityCoreInstances.) | |
GetDependingRelatedEntitiesT |
Gets a collection of related entities referenced by this entity which depend on this entity (this entity is the PK side of their FK fields). These
entities will have to be persisted after this entity during a recursive save.
(Inherited from EntityCoreTFields.) | |
GetDependingRelatedEntityCoreInstances |
Gets a collection of related entities referenced by this entity which depend on this entity (this entity is the PK side of their FK fields). These
entities will have to be persisted after this entity during a recursive save.
(Overrides EntityCoreTFieldsGetDependingRelatedEntityCoreInstances.) | |
GetEntityDescription |
Gets the entity description. This string is used in verbose trace messages.
It will produce "EntityCore", if verbose tracing is switched off for the GeneralSwitch, to prevent performance loss due to
reflection activity for trace results which will never be seen.
(Inherited from EntityCoreTFields.) | |
GetEntityStaticMetaData |
Gets the entity static meta data instance from the generated type.
(Inherited from EntityCoreTFields.) | |
GetEntitySyncInformation |
Will retrieve all stored entity synchronization information for the passed in entity. If no information is
stored, an empty hashtable is returned. All sync info is stored by fieldname
(Inherited from EntityCoreTFields.) | |
GetEntityTypeValue |
Gets the EntityType value as int for this entity.
(Inherited from EntityCoreTFields.) | |
GetFromMemberEntityCollectionsQueue |
Gets the member collections queue from the queue (base first)
| |
GetHashCode |
Overrides the GetHashCode method. It will calculate a hashcode for this entity using the eXclusive OR of the
hashcodes of the primary key fields in this entity. That hashcode is returned. If no primary key fields are present,
the hashcode of the base class is returned, which will not be unique.
(Inherited from EntityCoreTFields.) | |
GetInheritanceInfoProvider | Gets the inheritance info provider instance of the project this entity instance is located in. (Inherited from EntityCoreTFields.) | |
GetMemberEntityCollectionCoreInstances |
Gets a list of all entity collections stored as member variables in this entity. The contents of the list is
used by the DataAccessAdapter to perform recursive saves. Only 1:n related collections are returned.
(Overrides EntityCoreTFieldsGetMemberEntityCollectionCoreInstances.) | |
GetObjectData |
ISerializable member. Does custom serialization so event handlers do not get serialized.
(Overrides EntityCoreTFieldsGetObjectData(SerializationInfo, StreamingContext).) | |
GetRelatedData |
Gets all related data objects, stored by name. The name is the field name mapped onto the relation for that particular data element.
(Inherited from EntityCoreTFields.) | |
GetRelationsForFieldOfType | Gets the relation objects which represent the relation the fieldName specified is mapped on. (Inherited from EntityCoreTFields.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
GetValue |
Gets the value of the field with the index specified.
(Inherited from EntityCoreTFields.) | |
HasPopulatedMemberEntityCollections |
Determines whether the entity has populated member collections
| |
MarkFieldsAsDirty |
Marks the fields as dirty.
(Inherited from EntityCoreTFields.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
OnAuditDeleteOfEntity |
Audits the successful delete of an entity from the database
(Inherited from EntityCoreTFields.) | |
OnAuditDereferenceOfRelatedEntity |
Audits the successful dereference of related entity from the entity passed in.
(Inherited from EntityCoreTFields.) | |
OnAuditDirectDeleteOfEntities |
Audits the successful direct delete of entities in the database
(Inherited from EntityCoreTFields.) | |
OnAuditDirectUpdateOfEntities |
Audits the succesful direct update of entities in the database.
(Inherited from EntityCoreTFields.) | |
OnAuditEntityFieldGet |
Audits when an entity field's value is succesfully obtained from the passed in entity
(Inherited from EntityCoreTFields.) | |
OnAuditEntityFieldSet |
Audits when an entity field is set succesfully to a new value.
(Inherited from EntityCoreTFields.) | |
OnAuditInsertOfNewEntity |
Audits the successful insert of a new entity into the database.
(Inherited from EntityCoreTFields.) | |
OnAuditLoadOfEntity |
Audits the successful load of an entity from the database
(Inherited from EntityCoreTFields.) | |
OnAuditReferenceOfRelatedEntity |
Audits the successful reference of related entity from the entity passed in.
(Inherited from EntityCoreTFields.) | |
OnAuditUpdateOfExistingEntity |
Audits the successful update of an existing entity in the database
(Inherited from EntityCoreTFields.) | |
OnBeforeEntitySave |
This method is called from the DataAccessAdapter method OnBeforeEntitySave(), unless that method is overriden. You can override
this OnSave method instead, which allows you to make last minute changes, though keep the logic to do that in the entity.
(Inherited from EntityCoreTFields.) | |
OnBeginEdit |
Called after BeginEdit is succesfully called.
(Inherited from EntityCoreTFields.) | |
OnCanBatchDeleteEntitiesDirectly |
Method which will check if the caller is allowed to delete entities directly in the database.
(Inherited from EntityCoreTFields.) | |
OnCanBatchUpdateEntitiesDirectly |
Method which will check if the caller is allowed to update entities directly in the database.
(Inherited from EntityCoreTFields.) | |
OnCancelEdit |
Called after CancelEdit is succesfully called.
(Inherited from EntityCoreTFields.) | |
OnCanDeleteEntity |
Method which will check if the caller is allowed to delete this existing entity object
(Inherited from EntityCoreTFields.) | |
OnCanGetFieldValue |
Method which will check if the caller is allowed to get the field value with the index specified.
(Inherited from EntityCoreTFields.) | |
OnCanLoadEntity |
Method which will check if the caller is allowed to fill this entity object with entity data from the database or not.
(Inherited from EntityCoreTFields.) | |
OnCanSaveExistingEntity |
Method which will check if the caller is allowed to save this existing entity object
(Inherited from EntityCoreTFields.) | |
OnCanSaveNewEntity |
Method which will check if the caller is allowed to save this new entity object
(Inherited from EntityCoreTFields.) | |
OnCanSetFieldValue |
Method which will check if the caller is allowed to set the field value with the index specified.
(Inherited from EntityCoreTFields.) | |
OnDeserialized |
Called at the end of the deserialization constructor. Method is used when this object is deserialized. Override this method to
tap into the deserialization sequence. (binary/soap formatter specific).
(Inherited from EntityCoreTFields.) | |
OnEndEdit |
Called after EndEdit is succesfully called.
(Inherited from EntityCoreTFields.) | |
OnEntityAfterSave | Event handler which is called by a related entity after that entity is persisted. (Inherited from EntityCoreTFields.) | |
OnEntityContentsChanged |
Called when the entity's contents has been changed.
(Inherited from EntityCoreTFields.) | |
OnFieldValueChanged |
Method which is called right after a field's value has been changed. There are a couple of methods called in the process of setting a
field's value. This particular method is solely there to act on a field's value set action. It doesn't
raise an event, though it receives the old and new value of the field. Not called if a fieldvalue set action failed. This method is
called before changed events are raised.
(Inherited from EntityCoreTFields.) | |
OnGetFetchNewAuthorizationFailureResultHint |
Returns the FetchNewAuthorizationFailureResultHint as returned by the authorizer. Only called when the CanGetLoad failed (authorization failed, so load was denied)
(Inherited from EntityCoreTFields.) | |
OnGetObjectData |
Called at the end of GetObjectData. Method is used when this object is serialized. Override this method to
tap into the serialization sequence. (binary/soap formatter specific).
(Inherited from EntityCoreTFields.) | |
OnGetValue |
Called right at the beginning of GetValue(), which is called from an entity field property getter
(Inherited from EntityCoreTFields.) | |
OnGetValueComplete |
Called right at the end of GetValue(), which is called from an entity field property getter
(Inherited from EntityCoreTFields.) | |
OnInitClassMembersComplete |
Called when InitClassMembers is complete.
(Inherited from EntityCoreTFields.) | |
OnInitialized |
Called at the end of the initialization method. Raises Initialized event.
(Inherited from EntityCoreTFields.) | |
OnInitializing |
Called at the start of the initialization method. Raises Initializing event.
(Inherited from EntityCoreTFields.) | |
OnPropertyChanged |
Called when a property changed value. Call this method to signal databound controls a property has changed.
(Inherited from EntityCoreTFields.) | |
OnRelatedEntitySet |
Method which is called at the end of the SetRelatedEntity() method. Usable to act on the fact that a related entity has been set.
(Inherited from EntityCoreTFields.) | |
OnRelatedEntityUnset |
Method which is called at the end of the UnsetRelatedEntity() method. Usable to act on the fact that an entity has been
dereferenced as a related entity by the containing entity.
(Inherited from EntityCoreTFields.) | |
OnRequiresTransactionForAuditEntities |
Method which returns true if this auditor expects to have audit entities to persist and therefore needs a transaction.
This method is called in the situation when there's no transaction going on though one should be started right before the single-statement action
in the case if the auditor has entities to save afterwards. It's recommended to return true if the auditor might have audit entities
to persist after an entity save/delete/direct update/direct delete of entities. Default: false
(Inherited from EntityCoreTFields.) | |
OnSetRelatedEntityProperty |
Method which is called in the default clause of the SetRelatedEntityProperty method during the merge process of prefetch path fetches.
(Inherited from EntityCoreTFields.) | |
OnSetValue |
Called right at the beginning of SetValue(), which is called from an entity field property setter
(Inherited from EntityCoreTFields.) | |
OnSetValueComplete |
Called right at the end of SetValue(), which is called from an entity field property setter
(Inherited from EntityCoreTFields.) | |
OnTransactionCommit |
Called after the TransactionCommit method has been finished.
(Inherited from EntityCoreTFields.) | |
OnTransactionRollback |
Called after the TransactionRollback method has been finished.
(Inherited from EntityCoreTFields.) | |
OnValidateEntityAfterLoad |
Method to validate the containing entity after it is loaded. This method is called after the entity has been fully loaded.
(Inherited from EntityCoreTFields.) | |
OnValidateEntityAfterSave |
Method to validate the containing entity right after the entity's save action has been completed and the entity has been refetched (if applicable).
Note for adapter users: if the entity wasn't set to be refetched, take into account that reading properties from the containing entity will result in an
OutOfSync exception.
(Inherited from EntityCoreTFields.) | |
OnValidateEntityBeforeDelete |
Method to validate the containig entity right beforethe entity's delete action will take place.
(Inherited from EntityCoreTFields.) | |
OnValidateEntityBeforeSave |
Method to validate the containing entity right before the save sequence for the entity will start. LLBLGen Pro will call this method right after the
containing entity is selected from the save queue to be saved.
(Inherited from EntityCoreTFields.) | |
OnValidateFieldValue |
Method which will validate, using custom code supplied this class, the field with index fieldIndex if it should accept
the specified value. This method is only called when standard checks already succeeded, so value isn't null, and value does match the
destination column definition of the EntityField related to fieldIndex.
(Inherited from EntityCoreTFields.) | |
PerformCustomXmlDeserialization |
Performs custom XML deserialization for properties which have the CustomXmlSerializationAttribute.
The xmlreader should be used to read the xml from. The reader is positioned on the StartElement of the property which has the name of the property.
Check if the element is empty and if not, read till the reader is positioned on the EndElement of the property (which also has the same name).
Your override has to set the property's value, using the descriptor's SetValue method.
(Inherited from EntityCoreTFields.) | |
PerformCustomXmlSerialization |
Performs custom XML serialization for properties which have the CustomXmlSerializationAttribute.
Override this method if for some property the data has to be serialized into the output.
The xmlwriter should be used to write xml to. You shouldn't emit a startelement with the propertyname, that's already done. Also
you shouldn't emit an endelement with the propertyname, that will be done for you. Simply emit XML with the data. Be sure the xml
data is valid. You can use the XmlHelper class if necessary.
(Inherited from EntityCoreTFields.) | |
PerformDependencyInjection |
Performs the dependency injection of related objects. This method will call the Create* methods to create validator, concurrency predicate factory
and will then kick in the DependencyInjection functionality build into LLBLGen Pro.
This method is called at the end of an entity's InitClassMembers method in the generated code.
(Inherited from EntityCoreTFields.) | |
PerformDesyncSetupFKFieldChange |
Performs the desync setup when an FK field has been changed. The entity referenced based on the FK field will be dereferenced and sync
info will be removed.
(Inherited from EntityCoreTFields.) | |
PerformPostReadXmlFixups |
Routine which is used to perform tasks after a ReadXml() action on this entity instance was performed
(Inherited from EntityCoreTFields.) | |
PerformRelatedEntityRemoval |
Performs the related entity removal.
(Inherited from EntityCoreTFields.) | |
PostFieldValueSetAction |
Method to perform post-fieldvalue set actions, like flagging this object as changed.
(Inherited from EntityCoreTFields.) | |
PostProcessValueToGet |
Post-processes the value to return from GetValue. Override this method to be able to post-process any value to return from an entity field's property.
(Inherited from EntityCoreTFields.) | |
PreProcessValueToSet |
Method which is meant to be overriden to pre-process a value right before it is set as a field's new value. In general you don't need to override
this method. By default it's a no-op.
(Inherited from EntityCoreTFields.) | |
ReadXml(String) |
Will fill the entity and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
be filled with Xml in the format written by IEntityCore.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
(Inherited from EntityCoreTFields.) | |
ReadXml(XmlNode) |
Will fill the entity and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
be filled with Xml in the format written by IEntityCore.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
(Inherited from EntityCoreTFields.) | |
ReadXml(XmlReader) |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCoreTFields.) | |
ReadXml(XmlNode, XmlFormatAspect) |
Will fill the entity and its containing members (recursively) with the data stored in the XmlNode passed in. The XmlNode has to
be filled with Xml in the format written by IEntityCore.WriteXml() and the Xml has to be compatible with the structure of this entity collection.
(Inherited from EntityCoreTFields.) | |
ReadXml(XmlReader, XmlFormatAspect) |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCoreTFields.) | |
ReadXmlExplicitImpl |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object. The method which is called from
the explicit implementation of IXmlSerializable.ReadXml(reader).
(Inherited from EntityCoreTFields.) | |
RemoveFromParentCollection |
Removes this instance from the parent collection (if present), to which it was added through databinding
(Overrides EntityCoreTFieldsRemoveFromParentCollection.) | |
RollbackFields |
Replaces the current set of fields with the fields saved under the name specified. If no set of fields is found with the name specified
an exception is thrown. Removes the entry after a succesful rollback.
(Inherited from EntityCoreTFields.) | |
SaveFields |
Saves the current set of fields under the name specified in an internal hashtable. All data inside the field objects is preserved.
If there is already a set of fields saved under the name specified, that set of fields is overwritten.
(Inherited from EntityCoreTFields.) | |
SerializeOwnedData |
Method which stores owned data - i.e. considered private to this entity
and not shared with any external object
| |
SetAlreadyFetchedValueForNavigator |
Sets the _alreadyFetched*Navigatorname* flag for the navigator specified to the value specified.
(Inherited from EntityCoreTFields.) | |
SetDiscriminatorFlagIfRequired |
Sets the discriminator flag if required.
(Inherited from EntityCoreTFields.) | |
SetEntityError |
Sets the error message which is returned by IDataErrorInfo.Error
(Inherited from EntityCoreTFields.) | |
SetEntityFieldError |
Sets the error message for the field specified. If there's already a message stored for this field, it's overwritten unless append is
set to true, which appends the message to the existing error using a semi-colon as separator. The message stored
is returned by IDataErrorInfo[fieldName];
(Inherited from EntityCoreTFields.) | |
SetEntitySyncInformation |
Will set the passed in information as Entity sync information. If there is no sync information stored yet for the related entity
then a new entry is created, otherwise it's info is added to the sync information of this entity, if it isn't already present.
If there is already sync information for this field stored for another related entity, that information is removed.
(Inherited from EntityCoreTFields.) | |
SetNewFieldValue(Int32, Object) |
Sets the EntityField2 on index fieldIndex to the new value value. Marks also the entityfields2 as dirty.
(Inherited from EntityCoreTFields.) | |
SetNewFieldValue(String, Object) |
Sets the EntityField with the name fieldName to the new value value. Marks also the entityfields as dirty. Will refetch the complete entity's fields
from the database if necessary (i.e. the entity is outofsync.).
(Inherited from EntityCoreTFields.) | |
SetNewFieldValue(Int32, Object, Boolean) | Obsolete.
Sets the Entity Field on index fieldIndex to the new value value. Marks also the entityfields2 as dirty.
(Inherited from EntityCoreTFields.) | |
SetRelatedEntity |
Sets the internal parameter related to the fieldname passed to the instance relatedEntity.
(Overrides EntityCoreTFieldsSetRelatedEntity(IEntityCore, String).) | |
SetRelatedEntityProperty |
Sets the related entity property to the entity specified. If the property is a collection, it will add the entity specified to that collection.
(Overrides EntityCoreTFieldsSetRelatedEntityProperty(String, IEntityCore).) | |
SetSingleRelatedEntityNavigator |
Sets the single related entity navigator to the value (toSet) specified. This isn't done directly, but indirecly by the opposite entity
| |
SetupSyncT |
Sets up the synchronization between the related entity and this entity, related over the member specified.
(Inherited from EntityCoreTFields.) | |
SetValue(Int32, Object) |
Sets the value of the field with the index specified to the value specified.
(Inherited from EntityCoreTFields.) | |
SetValue(Int32, Object, Boolean) |
Sets the EntityField on index fieldIndex to the new value value. Marks also the entityfields as dirty. Will refetch the complete entity's fields
from the database if necessary (i.e. the entity is outofsync.).
(Inherited from EntityCoreTFields.) | |
SetValue(Int32, Object, Boolean, Boolean) |
Sets the value of the field with the index specified to the value specified.
(Inherited from EntityCoreTFields.) | |
SyncFKFields |
Synchronizes the PK values of the dataSupplier with the related FK values of this entity.
(Inherited from EntityCoreTFields.) | |
TestCurrentFieldValueForNull | Obsolete. Returns true if the current value for the field with the fieldIndex passed in represents null/not defined, false otherwise.
Should not be used for testing if the original value (read from the db) is NULL (Inherited from EntityCoreTFields.) | |
TestOriginalFieldValueForNull | Returns true if the original value for the field with the fieldIndex passed in, read from the persistent storage was NULL, false otherwise.
Should not be used for testing if the current value is NULL, use TestCurrentFieldValueForNull(Enum) for that. (Inherited from EntityCoreTFields.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
UnsetEntitySyncInformation |
Will unset (remove) the passed in information as Entity sync information. If there is no sync information stored for the related entity
after this info has been removed, the complete hashentry is removed.
(Inherited from EntityCoreTFields.) | |
UnsetRelatedEntity |
Unsets the internal parameter related to the fieldname passed to the instance relatedEntity. Reverses the actions taken by SetRelatedEntity()
(Overrides EntityCoreTFieldsUnsetRelatedEntity(IEntityCore, String, Boolean).) | |
Validate | Obsolete.
Method to keep code compilable however which is now marked as obsolete, as people should call ValidateEntity.
(Inherited from EntityCoreTFields.) | |
ValidateEntity |
General validation method which isn't used by the LLBLGen Pro framework, but can be used by your own code to validate an entity at any given moment.
(Inherited from EntityCoreTFields.) | |
WriteXml(String) |
Converts this entity to XML, recursively. Uses the LLBLGenProEntityName for the rootnode name
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlWriter) |
Constructs the XML output from the object graph which has this object as the root.
(Inherited from EntityCoreTFields.) | |
WriteXml(String, String) |
Converts this entity to XML, recursively.
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlDocument, XmlNode) |
Converts this entity to XML, recursively. Uses the LLBLGenProEntityName for the rootnode name
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlWriter, XmlFormatAspect) |
Converts this entity to XML
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlFormatAspect, String) |
Converts this entity to XML, recursively. Uses the LLBLGenProEntityName for the rootnode name
(Inherited from EntityCoreTFields.) | |
WriteXml(String, XmlDocument, XmlNode) |
Converts this entity to XML, recursively.
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlWriter, XmlFormatAspect, String) |
Converts this entity to XML
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlFormatAspect, String, String) |
Converts this entity to XML, recursively.
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlFormatAspect, XmlDocument, XmlNode) |
Converts this entity to XML, recursively. Uses the LLBLGenProEntityName for the rootnode name
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlWriter, XmlFormatAspect, String, DictionaryGuid, IEntityCore) |
Converts this entity to XML
(Inherited from EntityCoreTFields.) | |
WriteXml(XmlFormatAspect, String, XmlDocument, XmlNode) |
Converts this entity to XML, recursively.
(Inherited from EntityCoreTFields.) | |
Xml2Entity(XmlNode, DictionaryGuid, IEntityCore, ListNodeEntityReference) |
Performs the actual conversion from Xml to entity data.
(Overrides EntityCoreTFieldsXml2Entity(XmlNode, DictionaryGuid, IEntityCore, ListNodeEntityReference).) | |
Xml2Entity(XmlReader, DictionaryGuid, IEntityCore, ListNodeEntityReference) |
Performs the actual conversion from Xml to entity data.
(Overrides EntityCoreTFieldsXml2Entity(XmlReader, DictionaryGuid, IEntityCore, ListNodeEntityReference).) |
Name | Description | |
---|---|---|
AfterSave |
Event handler declaration for the event that is fired each time this entity is persisted. Related entities can subscribe to
this event to start housekeeping actions, like syncing internal FK fields with the PK fields of this entity.
(Inherited from EntityCoreTFields.) | |
EntityContentsChanged |
Event handler declaration for the event that is fired each time the one of values of this entity are changed.
The event does not contain the value / field which is changed, it only signals subscribers the entity is changed
and the subscriber should act accordingly, f.e. fire a ListChanged event.
(Inherited from EntityCoreTFields.) | |
Initialized |
Event which is raised at the end of the initialization method of the entity. This event is also raised if the entity is pre-filled with a
filled EntityFields(2) object. In your handler, check the State property of the entity Fields to see if you're dealing with a new entity or with an
entity which is new, but pre-initialized with filled field objects.
(Inherited from EntityCoreTFields.) | |
Initializing |
Event which is raised at the start of the initialization method of the entity. The entity is clean and has no entity fields object yet.
(Inherited from EntityCoreTFields.) | |
PropertyChanged |
Event fired when a field / property is changed. To fire this event from a derived class, call OnPropertyChanged.
(Inherited from EntityCoreTFields.) |
Name | Description | |
---|---|---|
IEditableObjectBeginEdit |
Begins an edit on an object.
(Inherited from EntityCoreTFields.) | |
IEditableObjectCancelEdit |
Discards changes since the last BeginEdit call.
(Inherited from EntityCoreTFields.) | |
IEditableObjectEndEdit | (Inherited from EntityCoreTFields.) | |
IDataErrorInfoError |
Gets an error message indicating what is wrong with this object.
(Inherited from EntityCoreTFields.) | |
ISerializableGetObjectData |
Populates a SerializationInfo with the data needed to serialize the target object.
(Inherited from EntityCoreTFields.) | |
IXmlSerializableGetSchema |
Produce the schema, always return null, as the XmlSerializer object otherwise can't handle our code.
(Inherited from EntityCoreTFields.) | |
IDataErrorInfoItem |
Gets the String with the specified column name.
(Inherited from EntityCoreTFields.) | |
IDeserializationCallbackOnDeserialization |
Runs when the entire object graph has been deserialized.
(Inherited from EntityCoreTFields.) | |
IXmlSerializableReadXml |
Constructs an object graph with this object as the root from the xml contained by the passed in XmlReader object.
(Inherited from EntityCoreTFields.) | |
IEntity2GetDependentRelatedEntities |
Gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields). These
entities will have to be persisted before this entity during a recursive save.
| |
IEntity2GetDependingRelatedEntities |
Gets a collection of related entities referenced by this entity which depend on this entity (this entity is the PK side of their FK fields). These
entities will have to be persisted after this entity during a recursive save.
| |
IEntity2GetEntityFactory |
Returns a new ready to use factory for the type of this instance.
| |
IEntity2GetMemberEntityCollections |
Gets a list of all entity collections stored as member variables in this entity. The contents of the list is
used by the DataAccessAdapter to perform recursive saves. Only 1:n related collections are returned.
| |
IEntity2PrimaryKeyFields |
List of IEntityField2 references which form the primary key. Reads/Affects .Fields.PrimaryKeyFields
| |
IEntityCoreAcceptChanges |
Accepts the changes made to the fields. Used in databinding/service scenarios. Calls AcceptChanges on the fields in this entity
(Inherited from EntityCoreTFields.) | |
IEntityCoreCheckIfEntityHasPendingFkSyncsTEntity |
Checks whether this instance has pending fk syncs. A pending FK sync is a sync which hasn't been used yet.
If an entity has pending FK syncs, it has to be included into a save queue. Only syncs with entities in the passed in queue are considered.
If a sync is with an entity which isn't in the passed in queue, the sync isn't honoured anyway, so the fk sync can be ignored.
(Inherited from EntityCoreTFields.) | |
IEntityCoreCheckIfIsSubTypeOf |
Determines whether this entity is a subType of the entity represented by the passed in enum value, which represents a value in the EntityType enum
(Inherited from EntityCoreTFields.) | |
IEntityCoreCustomPropertiesOfType |
The custom properties for the type of this entity instance.
(Inherited from EntityCoreTFields.) | |
IEntityCoreDiscardSavedFields |
Removes all saved field sets from the internal hashtable, clearing up space. This method is also called when
an entity is saved.
(Inherited from EntityCoreTFields.) | |
IEntityCoreFields |
Gets the fields object of this entity.
(Inherited from EntityCoreTFields.) | |
IEntityCoreFieldsCustomPropertiesOfType |
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.
(Inherited from EntityCoreTFields.) | |
IEntityCoreFlagAsSaved |
Flags me as saved.
(Inherited from EntityCoreTFields.) | |
IEntityCoreFlagMeAsChanged |
Routine which will flag all subscribers of the EntityContentsChanged event that this entity's contents is changed.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetAllRelations |
Gets a list of all the EntityRelation objects the type of this instance has.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetConcurrencyPredicate |
Creates the requested predicate of the type specified. If no IConcurrencyPredicateFactory instance is stored in this entity instance, null
is returned.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetDependentRelatedEntities |
Gets a collection of related entities referenced by this entity which this entity depends on (this entity is the FK side of their PK fields). These
entities will have to be persisted before this entity during a recursive save.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetDependingRelatedEntities |
Gets a collection of related entities referenced by this entity which depend on this entity (this entity is the PK side of their FK fields). These
entities will have to be persisted after this entity during a recursive save.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetEntityDescription(Boolean) |
Gets the entity description. This string is used in verbose trace messages.
It will produce "EntityCore", if the passed in switch flag is false, to prevent performance loss due to
reflection activity for trace results which will never be seen.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetEntityDescription(Boolean, IEntityCore) |
Gets the entity description. This string is used in verbose trace messages.
It will produce "EntityCore", if verbose tracing is switched off for the GeneralSwitch, to prevent performance loss due to
reflection activity for trace results which will never be seen.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetEntityFactory |
Returns a new ready to use factory for the type of this instance.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetFieldByName |
Helper method which performs a lookup in the fields based on the name specified.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetInheritanceInfo |
Gets the inheritance info for this entity, if applicable (it's then overriden) or null if not.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetInheritanceInfoProvider | Gets the inheritance info provider instance of the project this entity instance is located in. (Inherited from EntityCoreTFields.) | |
IEntityCoreGetMemberEntityCollections |
Gets a list of all entity collections stored as member variables in this entity. The contents of the list is
used by the DataAccessAdapter to perform recursive saves. Only 1:n related collections are returned.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetRelatedData |
Gets all related data objects, stored by name. The name is the field name mapped onto the relation for that particular data element.
(Inherited from EntityCoreTFields.) | |
IEntityCoreGetRelationsForFieldOfType |
Gets the relation objects which represent the relation the fieldName specified is mapped on.
(Inherited from EntityCoreTFields.) | |
IEntityCoreIsDeserializing |
Returns true if this entity instance is in the middle of a deserialization process, for example during a ReadXml() call.
For internal use only.
(Inherited from EntityCoreTFields.) | |
IEntityCoreIsUpdateOnlyEntity |
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.
(Inherited from EntityCoreTFields.) | |
IEntityCoreLLBLGenProEntityName |
Returns the full name for this entity, which is important for the DAO to find back persistence info for this entity.
(Inherited from EntityCoreTFields.) | |
IEntityCoreLLBLGenProEntityTypeValue |
Returns the EntityType enum value for this entity.
(Inherited from EntityCoreTFields.) | |
IEntityCoreLLBLGenProIsInHierarchyOfType |
Gets the type of the hierarchy this entity is in.
(Inherited from EntityCoreTFields.) | |
IEntityCoreMarkedForDeletion |
flag which is set when the entity is removed from an entity collection and added to a tracker.
(Inherited from EntityCoreTFields.) | |
IEntityCoreObjectID |
Gets / sets the unique Object ID which is created at runtime when the entity is instantiated. Can be used for external caches.
(Inherited from EntityCoreTFields.) | |
IEntityCorePrimaryKeyFieldInfos |
Gets the primary key field infos. Similar to PrimaryKeyFields, but this property doesn't trigger field creation.
(Inherited from EntityCoreTFields.) | |
IEntityCorePrimaryKeyFields |
List of IEntityField2 references which form the primary key. Reads/Affects .Fields.PrimaryKeyFields. If possible use PrimaryKeyFieldInfos instead.
(Inherited from EntityCoreTFields.) | |
IEntityCoreRejectChanges |
Rejects the changes made to the fields. Used in databinding/service scenarios. Calls RejectChanges on the fields in this entity
(Inherited from EntityCoreTFields.) | |
IEntityCoreRollbackFields |
Replaces the current set of fields with the fields saved under the name specified. If no set of fields is found with the name specified
an exception is thrown. Removes the entry after a succesful rollback.
(Inherited from EntityCoreTFields.) | |
IEntityCoreSaveFields |
Saves the current set of fields under the name specified in an internal hashtable. All data inside the field objects is preserved.
If there is already a set of fields saved under the name specified, that set of fields is overwritten.
(Inherited from EntityCoreTFields.) | |
IEntityCoreSetRelatedEntity |
Sets the internal parameter related to the fieldname passed to the instance relatedEntity.
(Inherited from EntityCoreTFields.) | |
IEntityCoreSetRelatedEntityProperty |
Sets the related entity property to the entity specified. If the property is a collection, it will add the entity specified to that collection.
(Inherited from EntityCoreTFields.) | |
IEntityCoreTypeDefaultValueProviderToUse |
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)
(Inherited from EntityCoreTFields.) | |
IEntityCoreUnsetRelatedEntity(IEntityCore, String) |
Unsets the internal parameter related to the fieldname passed to the instance relatedEntity. Reverses the actions taken by SetRelatedEntity()
(Inherited from EntityCoreTFields.) | |
IEntityCoreUnsetRelatedEntity(IEntityCore, String, Boolean) |
Unsets the internal parameter related to the fieldname passed to the instance relatedEntity. Reverses the actions taken by SetRelatedEntity()
(Inherited from EntityCoreTFields.) | |
ITransactionalElementParticipatesInTransaction |
Flag to check if the ITransactionalElement implementing object is participating in a transaction or not.
(Inherited from EntityCoreTFields.) | |
ITransactionalElementTransaction |
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.
(Inherited from EntityCoreTFields.) | |
ITransactionalElementTransactionCommit |
When the ITransaction in which this element participates is commited, this element can succesfully finish actions performed by this
element. This method is called by ITransaction, you should not call it by yourself. When this element doesn't participate in a
transaction it finishes the actions itself, calling this method is not needed.
(Inherited from EntityCoreTFields.) | |
ITransactionalElementTransactionRollback |
When the ITransaction in which this element participates is rolled back, this element has to roll back its internal variables.
This method is called by ITransaction, you should not call it by yourself.
(Inherited from EntityCoreTFields.) |