Пример #1
0
        /// <summary>
        /// Duplicates DbContentComment object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new DbContentComment object reflecting the replicated DbContentComment object.</returns>
        public DbContentComment Duplicate()
        {
            DbContentComment clonedDbContentComment = this.Clone();

            // Insert must be called after children are replicated!
            clonedDbContentComment.iD       = DbContentCommentManager._insert(clonedDbContentComment);
            clonedDbContentComment.isSynced = true;
            return(clonedDbContentComment);
        }
Пример #2
0
        /// <summary>
        /// Ensures that the object's fields and children are
        /// pre-loaded before any updates or reads.
        /// </summary>
        public void EnsurePreLoad()
        {
            if (!isPlaceHolder)
            {
                return;
            }

            DbContentCommentManager._fill(this);
            isPlaceHolder = false;
        }
Пример #3
0
        /// <summary>
        /// Saves the DbContentComment 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 = DbContentCommentManager._insert(this);
            }
            else
            {
                DbContentCommentManager._update(this);
            }
            isSynced = iD != -1;
            return(iD);
        }
Пример #4
0
 /// <summary>
 /// Overwrites and existing DbContentComment object in the database.
 /// </summary>
 public void Overwrite(int id)
 {
     iD = id;
     DbContentCommentManager._update(this);
     isSynced = true;
 }
Пример #5
0
 public void Delete()
 {
     DbContentCommentManager._delete(this.iD);
     this.iD  = 0;
     isSynced = false;
 }
Пример #6
0
 public DbContentComment(int id)
 {
     this.iD  = id;
     isSynced = DbContentCommentManager._fill(this);
 }
Пример #7
0
 public void Delete()
 {
     DbContentCommentManager._delete(this.iD);
 }