/// <summary>
		/// Returns a new instance that is a copy of the original one.
		/// </summary>
		/// <returns>A new instance.</returns>
		public InsertCommand Clone()
		{
			var cloned = new InsertCommand(Link, x => TableName);
			OnClone(cloned); return cloned;
		}