/// <summary>
 /// Clones this EntityType object to a new EntityType object
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="deepCopy">if set to <c>true</c> a deep copy is made. If false, only the basic entity properties are copied.</param>
 /// <returns></returns>
 public static EntityType Clone(this EntityType source, bool deepCopy)
 {
     if (deepCopy)
     {
         return(source.Clone() as EntityType);
     }
     else
     {
         var target = new EntityType();
         target.CopyPropertiesFrom(source);
         return(target);
     }
 }
Beispiel #2
0
        /// <summary>
        /// Clones this EntityType object to a new EntityType object with default values for the properties in the Entity and Model base classes.
        /// </summary>
        /// <param name="source">The source.</param>
        /// <returns></returns>
        public static EntityType CloneWithoutIdentity(this EntityType source)
        {
            var target = new EntityType();

            target.CopyPropertiesFrom(source);

            target.Id          = 0;
            target.Guid        = Guid.NewGuid();
            target.ForeignKey  = null;
            target.ForeignId   = null;
            target.ForeignGuid = null;

            return(target);
        }