Example #1
0
 partial void DeletePropertyTargetValue(PropertyTargetValue instance);
Example #2
0
 partial void UpdatePropertyTargetValue(PropertyTargetValue instance);
Example #3
0
 partial void InsertPropertyTargetValue(PropertyTargetValue instance);
Example #4
0
		private void detach_PropertyTargetValue(PropertyTargetValue entity)
		{
			this.SendPropertyChanging();
			entity.PropertiesHolder = null;
		}
Example #5
0
		private void detach_PropertyTargetValue(PropertyTargetValue entity)
		{
			this.SendPropertyChanging();
			entity.DicPropertyKind = null;
		}
Example #6
0
partial         void InsertPropertyTargetValue(PropertyTargetValue ptv)
        {
            var PropertyHistory = PropertyTargetValue.Where(p => p.PropertyHolderId == ptv.PropertyHolderId && p.PropertyKindId == ptv.PropertyKindId);
            InsertContinuousIntoSequence(ptv, PropertyHistory);
            ExecuteDynamicInsert(ptv);
        }