/// <summary> /// Duplicates GreyFoxUserPreference object into a database; may or may not be the same database /// as the parent object. /// </summary> /// <returns> A new GreyFoxUserPreference object reflecting the replicated GreyFoxUserPreference object.</returns> public GreyFoxUserPreference Duplicate() { GreyFoxUserPreference clonedGreyFoxUserPreference = this.Clone(); // Insert must be called after children are replicated! clonedGreyFoxUserPreference.iD = GreyFoxUserPreferenceManager._insert(clonedGreyFoxUserPreference); clonedGreyFoxUserPreference.isSynced = true; return(clonedGreyFoxUserPreference); }
/// <summary> /// Ensures that the object's fields and children are /// pre-loaded before any updates or reads. /// </summary> public void EnsurePreLoad() { if (!isPlaceHolder) { return; } GreyFoxUserPreferenceManager._fill(this); isPlaceHolder = false; }
/// <summary> /// Saves the GreyFoxUserPreference 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 = GreyFoxUserPreferenceManager._insert(this); } else { GreyFoxUserPreferenceManager._update(this); } isSynced = iD != -1; return(iD); }
/// <summary> /// Overwrites and existing GreyFoxUserPreference object in the database. /// </summary> public void Overwrite(int id) { iD = id; GreyFoxUserPreferenceManager._update(this); isSynced = true; }
public void Delete() { GreyFoxUserPreferenceManager._delete(this.iD); }
public GreyFoxUserPreference(int id) { this.iD = id; isSynced = GreyFoxUserPreferenceManager._fill(this); }
public void Delete() { GreyFoxUserPreferenceManager._delete(this.iD); this.iD = 0; isSynced = false; }