Ejemplo n.º 1
0
        /// <summary>
        /// Saves all recent changes that were made to this Item to the DB
        /// </summary>
        public void Save()
        {
            if (IsDeleted)
            {
                LogUtil.ErrorException(new InvalidOperationException("Trying to save deleted Item: " + this));
                return;
            }

            m_record.SaveAndFlush();
        }