// OneToMany public void LoadGLEntities(GLEntityType obj) { if (obj.GLEntities != null) { _gLEntitiesProperty = obj.GLEntities.CurrentDTO; } }
public GLEntityType CopyDTO(GLEntityType obj) { obj.GLEntityTypeID = this.GLEntityTypeID; obj.Code = this.Code; obj.Name = this.Name; return(obj); }
public void Child_Update(ApplicationUser applicationUser, GLEntityType gLEntityType, SqlConnection connection, SqlTransaction trans) { bool cancel = false; OnChildUpdating(applicationUser, gLEntityType, connection, ref cancel, trans); if (cancel) { return; } if (connection.State != ConnectionState.Open) { connection.Open(); } using (var command = new SqlCommand("[dbo].[spCFM_GLEntity_Update]", connection, trans)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("@p_GLEntityID", this.GLEntityID); command.Parameters.AddWithValue("@p_EntityTypeID", gLEntityType != null ? gLEntityType.GLEntityTypeID : this.EntityTypeID); command.Parameters.AddWithValue("@p_IsActive", this.IsActive); command.Parameters.AddWithValue("@p_CreatedBy", applicationUser != null ? applicationUser.ApplicationUserID : this.CreatedBy); command.Parameters.AddWithValue("@p_CreatedOn", this.CreatedOn); command.Parameters.AddWithValue("@p_UpdatedBy", ADOHelper.NullCheck(applicationUser != null ? applicationUser.ApplicationUserID : this.UpdatedBy)); command.Parameters.AddWithValue("@p_UpdatedOn", ADOHelper.NullCheck(this.UpdatedOn)); //result: The number of rows changed, inserted, or deleted. -1 for select statements; 0 if no rows were affected, or the statement failed. int result = command.ExecuteNonQuery(); if (result == 0) { throw new DBConcurrencyException("The entity is out of date on the client. Please update the entity and try again. This could also be thrown if the sql statement failed to execute."); } // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (gLEntityType != null && gLEntityType.GLEntityTypeID != this.EntityTypeID) { _entityTypeIDProperty = gLEntityType.GLEntityTypeID; } // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (applicationUser != null && applicationUser.ApplicationUserID != this.CreatedBy) { _createdByProperty = applicationUser.ApplicationUserID; } // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (applicationUser != null && applicationUser.ApplicationUserID != this.UpdatedBy) { _updatedByProperty = applicationUser.ApplicationUserID; } } // A child relationship exists on this Business Object but its type is not a child type (E.G. EditableChild). // TODO: Please override OnChildUpdated() and update this child manually. // UpdateChildren(this, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, connection); OnChildUpdated(); }
public void Child_Insert(ApplicationUser applicationUser, GLEntityType gLEntityType, SqlConnection connection, SqlTransaction trans) { bool cancel = false; OnChildInserting(applicationUser, gLEntityType, connection, ref cancel, trans); if (cancel) { return; } if (connection.State != ConnectionState.Open) { connection.Open(); } using (var command = new SqlCommand("[dbo].[spCFM_GLEntity_Insert]", connection, trans)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("@p_GLEntityID", this.GLEntityID); command.Parameters["@p_GLEntityID"].Direction = ParameterDirection.Output; command.Parameters.AddWithValue("@p_EntityTypeID", gLEntityType != null ? gLEntityType.GLEntityTypeID : this.EntityTypeID); command.Parameters.AddWithValue("@p_IsActive", this.IsActive); command.Parameters.AddWithValue("@p_CreatedBy", applicationUser != null ? applicationUser.ApplicationUserID : this.CreatedBy); command.Parameters.AddWithValue("@p_CreatedOn", this.CreatedOn); command.Parameters.AddWithValue("@p_UpdatedBy", ADOHelper.NullCheck(applicationUser != null ? applicationUser.ApplicationUserID : this.UpdatedBy)); command.Parameters.AddWithValue("@p_UpdatedOn", ADOHelper.NullCheck(this.UpdatedOn)); command.ExecuteNonQuery(); // Update identity primary key value. _gLEntityIDProperty = (System.Int32)command.Parameters["@p_GLEntityID"].Value; // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (gLEntityType != null && gLEntityType.GLEntityTypeID != this.EntityTypeID) { _entityTypeIDProperty = gLEntityType.GLEntityTypeID; } // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (applicationUser != null && applicationUser.ApplicationUserID != this.CreatedBy) { _createdByProperty = applicationUser.ApplicationUserID; } // Update foreign keys values. This code will update the values passed in from the parent only if no errors occurred after executing the query. if (applicationUser != null && applicationUser.ApplicationUserID != this.UpdatedBy) { _updatedByProperty = applicationUser.ApplicationUserID; } } // A child relationship exists on this Business Object but its type is not a child type (E.G. EditableChild). // TODO: Please override OnChildInserted() and insert this child manually. // UpdateChildren(this, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, connection); OnChildInserted(); }
public static GLEntityType GetGLEntityType(Func <IDataReader, GLEntityType> rowParser, SqlDataReader reader) { GLEntityType obj = rowParser(reader); obj.InitDTO(); obj.IsDirty = false; obj.IsNew = false; return(obj); }
protected void UpdateChildren(GLEntityType parent, SqlConnection connection, SqlTransaction trans) { if (_gLAccountTypesPropertyChecked) { if (_gLAccountTypesProperty != null) { foreach (GLAccountType obj in _gLAccountTypesProperty) { if (obj.IsNew) { obj.Child_Insert(parent, connection, trans); } else { if (obj.IsDirty || obj.IsChildDirty()) { obj.Child_Update(parent, connection, trans); } } } } } if (_gLEntitiesPropertyChecked) { if (_gLEntitiesProperty != null) { foreach (GLEntity obj in _gLEntitiesProperty) { if (obj.IsNew) { obj.Child_Insert(parent, connection, trans); } else { if (obj.IsDirty || obj.IsChildDirty()) { obj.Child_Update(parent, connection, trans); } } } } } }
/// <summary> /// CodeSmith generated stub method that is called when updating the child <see cref="GLEntity"/> object. /// </summary> /// <param name="connection"></param> /// <param name="cancel">Value returned from the method indicating whether the object insertion should proceed.</param> partial void OnChildUpdating(ApplicationUser applicationUser, GLEntityType gLEntityType, SqlConnection connection, ref bool cancel, SqlTransaction trans);
public void Child_Update(GLEntityType gLEntityType, SqlConnection connection, SqlTransaction trans) { Child_Update(null, gLEntityType, connection, trans); }
// [Transactional(TransactionalTypes.TransactionScope)] protected void DataPortal_Update() { bool cancel = false; OnUpdating(ref cancel); if (cancel) { return; } if (OriginalGLEntityTypeID != GLEntityTypeID) { // Insert new child. GLEntityType item = new GLEntityType { GLEntityTypeID = GLEntityTypeID, Code = Code, Name = Name }; item.DataPortal_Update(); // Mark editable child lists as dirty. This code may need to be updated to one-to-one relationships. foreach (GLAccountType itemToUpdate in GLAccountTypes) { itemToUpdate.GLEntityTypeID = GLEntityTypeID; } foreach (GLEntity itemToUpdate in GLEntities) { itemToUpdate.EntityTypeID = GLEntityTypeID; } // Create a new connection. using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); SqlTransaction trans = connection.BeginTransaction(); try { UpdateChildren(this, connection, trans); trans.Commit(); } catch (Exception ex) { trans.Rollback(); throw; } //FieldManager.UpdateChildren(this, connection); } // Delete the old. var criteria = new GLEntityTypeCriteria { GLEntityTypeID = OriginalGLEntityTypeID }; DataPortal_Delete(criteria); // Mark the original as the new one. OriginalGLEntityTypeID = GLEntityTypeID; OnUpdated(); return; } using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); SqlTransaction trans = connection.BeginTransaction(); try { using (var command = new SqlCommand("[dbo].[spCFM_GLEntityType_Update]", connection, trans)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("@p_OriginalGLEntityTypeID", this.OriginalGLEntityTypeID); command.Parameters.AddWithValue("@p_GLEntityTypeID", this.GLEntityTypeID); command.Parameters.AddWithValue("@p_Code", ADOHelper.NullCheck(this.Code)); command.Parameters.AddWithValue("@p_Name", this.Name); //result: The number of rows changed, inserted, or deleted. -1 for select statements; 0 if no rows were affected, or the statement failed. int result = command.ExecuteNonQuery(); if (result == 0) { throw new DBConcurrencyException("The entity is out of date on the client. Please update the entity and try again. This could also be thrown if the sql statement failed to execute."); } _originalGLEntityTypeIDProperty = this.GLEntityTypeID; } UpdateChildren(this, connection, trans); //FieldManager.UpdateChildren(this, connection); trans.Commit(); } catch (Exception ex) { trans.Rollback(); throw; } } OnUpdated(); }
/// <summary> /// Creates a new object of type <see cref="GLEntityType"/>. /// </summary> /// <returns>Returns a newly instantiated collection of type <see cref="GLEntityType"/>.</returns> public static GLEntityType NewGLEntityType() { GLEntityType obj = new GLEntityType(); return(obj); }