public void tblZslRoute_persistence_test()
        {
            DateTime now = DateTime.Now;

            // Get datetime without milliseconds
            now = new DateTime(now.Ticks - (now.Ticks % TimeSpan.TicksPerSecond), now.Kind);
            var _zanardobo_route_tblzslroute = new DSS3_LogisticsPoolingForUrbanDistribution.BO.tblZslRoute
            {
                EntryDate   = now,
                RouteNumber = "tblZslRoute_RouteNumber",
                LastUpdated = now,
            };

            new PersistenceSpecification <DSS3_LogisticsPoolingForUrbanDistribution.BO.tblZslRoute>(Session)
            .CheckProperty(p => p.EntryDate, now)
            .CheckProperty(p => p.RouteNumber, "tblZslRoute_RouteNumber")
            .CheckProperty(p => p.LastUpdated, now)
            .CheckReference(p => p.Route, _zanardobo_route_tblzslroute)
            .VerifyTheMappings();
        }
/// <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(tblZslRoute compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
/// <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 [tblZslRoute] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual tblZslRoute Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, tblZslRoute copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((tblZslRoute)copiedObjects[this]);
            }
            copy = copy ?? new tblZslRoute();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.EntryDate   = this.EntryDate;
            copy.RouteNumber = this.RouteNumber;
            copy.LastUpdated = this.LastUpdated;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.route != null)
            {
                if (!copiedObjects.Contains(this.route))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Route = this.Route;
                    }
                    else if (asNew)
                    {
                        copy.Route = this.Route.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.route = this.route.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Route = (tblZslRoute)copiedObjects[this.Route];
                    }
                    else
                    {
                        copy.route = (tblZslRoute)copiedObjects[this.Route];
                    }
                }
            }
            return(copy);
        }