/// <summary> setups the sync logic for member _afcreativeFormat</summary> /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param> private void SetupSyncAfcreativeFormat(IEntity2 relatedEntity) { if (_afcreativeFormat != relatedEntity) { DesetupSyncAfcreativeFormat(true, true); _afcreativeFormat = (AfcreativeFormatEntity)relatedEntity; base.PerformSetupSyncRelatedEntity(_afcreativeFormat, new PropertyChangedEventHandler(OnAfcreativeFormatPropertyChanged), "AfcreativeFormat", AfcreativeEntity.Relations.AfcreativeFormatEntityUsingCreativeFormatId, true, new string[] { }); } }
/// <summary> Initializes the class members</summary> protected virtual void InitClassMembers() { _afcampaignCreative = null; _afcampaignCollectionViaAfcampaignCreative = null; _afcreativeFormat = null; PerformDependencyInjection(); // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers // __LLBLGENPRO_USER_CODE_REGION_END OnInitClassMembersComplete(); }
protected AfcreativeEntity(SerializationInfo info, StreamingContext context) : base(info, context) { if (SerializationHelper.Optimization != SerializationOptimization.Fast) { _afcampaignCreative = (EntityCollection <AfcampaignCreativeEntity>)info.GetValue("_afcampaignCreative", typeof(EntityCollection <AfcampaignCreativeEntity>)); _afcampaignCollectionViaAfcampaignCreative = (EntityCollection <AfcampaignEntity>)info.GetValue("_afcampaignCollectionViaAfcampaignCreative", typeof(EntityCollection <AfcampaignEntity>)); _afcreativeFormat = (AfcreativeFormatEntity)info.GetValue("_afcreativeFormat", typeof(AfcreativeFormatEntity)); if (_afcreativeFormat != null) { _afcreativeFormat.AfterSave += new EventHandler(OnEntityAfterSave); } base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance()); } // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor // __LLBLGENPRO_USER_CODE_REGION_END }
/// <summary>Gets the relation objects which represent the relation the fieldName specified is mapped on. </summary> /// <param name="fieldName">Name of the field mapped onto the relation of which the relation objects have to be obtained.</param> /// <returns>RelationCollection with relation object(s) which represent the relation the field is maped on</returns> public override RelationCollection GetRelationsForFieldOfType(string fieldName) { return(AfcreativeFormatEntity.GetRelationsForField(fieldName)); }
/// <summary> Removes the sync logic for member _afcreativeFormat</summary> /// <param name="signalRelatedEntity">If set to true, it will call the related entity's UnsetRelatedEntity method</param> /// <param name="resetFKFields">if set to true it will also reset the FK fields pointing to the related entity</param> private void DesetupSyncAfcreativeFormat(bool signalRelatedEntity, bool resetFKFields) { base.PerformDesetupSyncRelatedEntity(_afcreativeFormat, new PropertyChangedEventHandler(OnAfcreativeFormatPropertyChanged), "AfcreativeFormat", AfcreativeEntity.Relations.AfcreativeFormatEntityUsingCreativeFormatId, true, signalRelatedEntity, "Afcreative", resetFKFields, new int[] { (int)AfcreativeFieldIndex.CreativeFormatId }); _afcreativeFormat = null; }