/// <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(Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants field, object newValue, bool fixLength) { if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.FirstCommunication) { this.FirstCommunication = GlobalValues.SetValueHelperDateTimeNotNullableInternal(newValue, "Field 'FirstCommunication' does not allow null values!"); } else if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.InstanceId) { if (newValue == null) { throw new Exception("Field 'InstanceId' does not allow null values!"); } else { this.InstanceId = (System.Guid)newValue; } } else if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.LastCommunication) { this.LastCommunication = GlobalValues.SetValueHelperDateTimeNotNullableInternal(newValue, "Field 'LastCommunication' does not allow null values!"); } else if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.RowId) { throw new Exception("Field '" + field.ToString() + "' is a primary key and cannot be set!"); } else { throw new Exception("Field '" + field.ToString() + "' not found!"); } }
/// <summary> /// Gets the value of one of this object's properties. /// </summary> public virtual object GetValue(Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants field, object defaultValue) { if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.FirstCommunication) { return(this.FirstCommunication); } if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.InstanceId) { return(this.InstanceId); } if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.LastCommunication) { return(this.LastCommunication); } if (field == Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants.RowId) { return(this.RowId); } throw new Exception("Field '" + field.ToString() + "' not found!"); }
/// <summary> /// Returns the actual database name of the specified field. /// </summary> internal static string GetDatabaseFieldName(Gravitybox.Datastore.EFDAL.Entity.ServiceInstance.FieldNameConstants field) { return(GetDatabaseFieldName(field.ToString())); }