コード例 #1
0
 /// <summary> setups the sync logic for member _itemDetails</summary>
 /// <param name="relatedEntity">Instance to set as the related entity of type entityType</param>
 private void SetupSyncItemDetails(IEntity2 relatedEntity)
 {
     if (_itemDetails != relatedEntity)
     {
         DesetupSyncItemDetails(true, true);
         _itemDetails = (ItemDetailsEntity)relatedEntity;
         base.PerformSetupSyncRelatedEntity(_itemDetails, new PropertyChangedEventHandler(OnItemDetailsPropertyChanged), "ItemDetails", ItemUserAccessEntity.Relations.ItemDetailsEntityUsingItemId, true, new string[] {  });
     }
 }
コード例 #2
0
        /// <summary> Initializes the class members</summary>
        protected virtual void InitClassMembers()
        {
            _itemDetails = null;

            PerformDependencyInjection();

            // __LLBLGENPRO_USER_CODE_REGION_START InitClassMembers
            // __LLBLGENPRO_USER_CODE_REGION_END
            OnInitClassMembersComplete();
        }
コード例 #3
0
        protected ItemUserAccessEntity(SerializationInfo info, StreamingContext context) : base(info, context)
        {
            if (SerializationHelper.Optimization != SerializationOptimization.Fast)
            {
                _itemDetails = (ItemDetailsEntity)info.GetValue("_itemDetails", typeof(ItemDetailsEntity));
                if (_itemDetails != null)
                {
                    _itemDetails.AfterSave += new EventHandler(OnEntityAfterSave);
                }

                base.FixupDeserialization(FieldInfoProviderSingleton.GetInstance());
            }

            // __LLBLGENPRO_USER_CODE_REGION_START DeserializationConstructor
            // __LLBLGENPRO_USER_CODE_REGION_END
        }
コード例 #4
0
 /// <summary> Removes the sync logic for member _itemDetails</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 DesetupSyncItemDetails(bool signalRelatedEntity, bool resetFKFields)
 {
     base.PerformDesetupSyncRelatedEntity(_itemDetails, new PropertyChangedEventHandler(OnItemDetailsPropertyChanged), "ItemDetails", ItemUserAccessEntity.Relations.ItemDetailsEntityUsingItemId, true, signalRelatedEntity, "ItemUserAccess", resetFKFields, new int[] { (int)ItemUserAccessFieldIndex.ItemId });
     _itemDetails = null;
 }
コード例 #5
0
ファイル: ItemDetailsEntity.cs プロジェクト: sahvishal/matrix
 /// <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(ItemDetailsEntity.GetRelationsForField(fieldName));
 }