private void detach_Children(Page entity)
		{
			this.SendPropertyChanging();
			entity.Parent = null;
		}
		private void attach_Children(Page entity)
		{
			this.SendPropertyChanging();
			entity.Parent = this;
		}
 partial void UpdatePage(Page instance);
 partial void DeletePage(Page instance);
 partial void InsertPage(Page instance);