partial void DeleteThought(Thought instance);
 partial void UpdateThought(Thought instance);
		private void detach_Thoughts(Thought entity)
		{
			this.SendPropertyChanging();
			entity.Idea = null;
		}
 partial void InsertThought(Thought instance);
		private void attach_Thoughts(Thought entity)
		{
			this.SendPropertyChanging();
			entity.Idea = this;
		}