Exemple #1
0
 /// <summary>
 /// Gets the value of one of this object's properties.
 /// </summary>
 public virtual object GetValue(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field, object defaultValue)
 {
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CustomerId)
     {
         return(this.CustomerId);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.OrderId)
     {
         return(this.OrderId);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.Price)
     {
         return(this.Price);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CreatedBy)
     {
         return((this.CreatedBy == null) ? defaultValue : this.CreatedBy);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CreatedDate)
     {
         return((this.CreatedDate == null) ? defaultValue : this.CreatedDate);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.ModifiedBy)
     {
         return((this.ModifiedBy == null) ? defaultValue : this.ModifiedBy);
     }
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.ModifiedDate)
     {
         return((this.ModifiedDate == null) ? defaultValue : this.ModifiedDate);
     }
     throw new Exception("Field '" + field.ToString() + "' not found!");
 }
Exemple #2
0
        /// <summary>
        /// Gets the maximum size of the field value.
        /// </summary>
        public static int GetMaxLength(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field)
        {
            switch (field)
            {
            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CustomerId:
                return(0);                        //Type=Int

            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.OrderId:
                return(0);                        //Type=Int

            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.Price:
                return(0);                        //Type=Int
            }
            return(0);
        }
Exemple #3
0
        /// <summary>
        /// Gets the system type of a field on this object
        /// </summary>
        public static System.Type GetFieldType(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field)
        {
            if (field.GetType() != typeof(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants))
            {
                throw new Exception("The field parameter must be of type 'Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants'.");
            }

            switch ((Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants)field)
            {
            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CustomerId: return(typeof(int));

            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.OrderId: return(typeof(int));

            case Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.Price: return(typeof(int));
            }
            return(null);
        }
Exemple #4
0
 /// <summary>
 /// Assigns a value to a field on this object.
 /// </summary>
 /// <param name="field">The field to set</param>
 /// <param name="newValue">The new value to assign to the field</param>
 /// <param name="fixLength">Determines if the length should be truncated if too long. When false, an error will be raised if data is too large to be assigned to the field.</param>
 public virtual void SetValue(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field, object newValue, bool fixLength)
 {
     if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.CustomerId)
     {
         this.CustomerId = GlobalValues.SetValueHelperIntNotNullableInternal(newValue, "Field 'CustomerId' does not allow null values!");
     }
     else if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.OrderId)
     {
         throw new Exception("Field '" + field.ToString() + "' is a primary key and cannot be set!");
     }
     else if (field == Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants.Price)
     {
         this.Price = GlobalValues.SetValueHelperIntNotNullableInternal(newValue, "Field 'Price' does not allow null values!");
     }
     else
     {
         throw new Exception("Field '" + field.ToString() + "' not found!");
     }
 }
Exemple #5
0
 /// <summary>
 /// Returns the actual database name of the specified field.
 /// </summary>
 internal static string GetDatabaseFieldName(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field)
 {
     return(GetDatabaseFieldName(field.ToString()));
 }
Exemple #6
0
 /// <summary>
 /// Assigns a value to a field on this object.
 /// </summary>
 /// <param name="field">The field to set</param>
 /// <param name="newValue">The new value to assign to the field</param>
 public virtual void SetValue(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field, object newValue)
 {
     SetValue(field, newValue, false);
 }
Exemple #7
0
 /// <summary>
 /// Gets the value of one of this object's properties.
 /// </summary>
 public virtual object GetValue(Acme.TestProject.EFDAL.Entity.Order.FieldNameConstants field)
 {
     return(GetValue(field, null));
 }