partial void DeleteFAQ(FAQ instance);
 partial void UpdateFAQ(FAQ instance);
		private void detach_FAQs(FAQ entity)
		{
			this.SendPropertyChanging();
			entity.FaqTopic = null;
		}
 partial void InsertFAQ(FAQ instance);
		private void attach_FAQs(FAQ entity)
		{
			this.SendPropertyChanging();
			entity.FaqTopic = this;
		}