/// <summary> /// Duplicates YariMediaKeyword object into a database; may or may not be the same database /// as the parent object. /// </summary> /// <returns> A new YariMediaKeyword object reflecting the replicated YariMediaKeyword object.</returns> public YariMediaKeyword Duplicate() { YariMediaKeyword clonedYariMediaKeyword = this.Clone(); // Insert must be called after children are replicated! clonedYariMediaKeyword.iD = YariMediaKeywordManager._insert(clonedYariMediaKeyword); clonedYariMediaKeyword.isSynced = true; return(clonedYariMediaKeyword); }
/// <summary> /// Saves the YariMediaKeyword 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 = YariMediaKeywordManager._insert(this); } else { YariMediaKeywordManager._update(this); } isSynced = iD != -1; return(iD); }