コード例 #1
0
ファイル: GreyFoxEvent.cs プロジェクト: rahodges/Amns
        /// <summary>
        /// Saves the GreyFoxEvent object state to the database.
        /// </summary>
        public int Save()
        {
            lock (this)
            {
                if (user != null)
                {
                    user.Save();
                }

                if (isSynced)
                {
                    return(iD);
                }

                if (iD == -1)
                {
                    throw (new Exception("Invalid record; cannot be saved."));
                }
                if (iD == 0)
                {
                    iD = GreyFoxEventManager._insert(this);
                }
                else
                {
                    GreyFoxEventManager._update(this);
                }
                isSynced = iD != -1;
            }
            return(iD);
        }
コード例 #2
0
ファイル: GreyFoxEvent.cs プロジェクト: rahodges/Amns
        /// <summary>
        /// Duplicates GreyFoxEvent object into a database; may or may not be the same database
        /// as the parent object.
        /// </summary>
        /// <returns> A new GreyFoxEvent object reflecting the replicated GreyFoxEvent object.</returns>
        public GreyFoxEvent Duplicate(string tableName)
        {
            lock (this)
            {
                GreyFoxEvent clonedGreyFoxEvent = this.Clone();
                clonedGreyFoxEvent.tableName = tableName;

                // Insert must be called after children are replicated!
                clonedGreyFoxEvent.iD       = GreyFoxEventManager._insert(clonedGreyFoxEvent);
                clonedGreyFoxEvent.isSynced = true;
                return(clonedGreyFoxEvent);
            }
        }