Esempio n. 1
0
        /// <summary>
        /// Duplicates DbContentRating object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new DbContentRating object reflecting the replicated DbContentRating object.</returns>
        public DbContentRating Duplicate()
        {
            DbContentRating clonedDbContentRating = this.Clone();

            // Insert must be called after children are replicated!
            clonedDbContentRating.iD       = DbContentRatingManager._insert(clonedDbContentRating);
            clonedDbContentRating.isSynced = true;
            return(clonedDbContentRating);
        }
Esempio n. 2
0
        /// <summary>
        /// Saves the DbContentRating object state to the database.
        /// </summary>
        public int Save()
        {
            if (isSynced)
            {
                return(iD);
            }

            if (iD == -1)
            {
                throw (new Exception("Invalid record; cannot be saved."));
            }
            if (iD == 0)
            {
                iD = DbContentRatingManager._insert(this);
            }
            else
            {
                DbContentRatingManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }