Exemple #1
0
/// <summary>
///     Returns true if self and the provided entity have the same Id values
///     and the Ids are not of the default Id value
/// </summary>
        protected bool HasSameNonDefaultIdAs(from compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.fromKey.Equals(compareTo.fromKey));
        }
Exemple #2
0
/// <summary>
/// Copies the current object to a new instance
/// </summary>
/// <param name="deep">Copy members that refer to objects external to this class (not dependent)</param>
/// <param name="copiedObjects">Objects that should be reused</param>
/// <param name="asNew">Copy the current object as a new one, ready to be persisted, along all its members.</param>
/// <param name="reuseNestedObjects">If asNew is true, this flag if set, forces the reuse of all external objects.</param>
/// <param name="copy">Optional - An existing [from] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual from Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, from copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((from)copiedObjects[this]);
            }
            copy = copy ?? new from();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.fromKey     = this.fromKey;
            }
            copy.lat      = this.lat;
            copy.lon      = this.lon;
            copy.name     = this.name;
            copy.stopCode = this.stopCode;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this._stopId != null)
            {
                if (!copiedObjects.Contains(this._stopId))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.stopId = this.stopId;
                    }
                    else if (asNew)
                    {
                        copy.stopId = this.stopId.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy._stopId = this._stopId.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.stopId = (stopId)copiedObjects[this.stopId];
                    }
                    else
                    {
                        copy._stopId = (stopId)copiedObjects[this.stopId];
                    }
                }
            }
            return(copy);
        }