//[Transactional(TransactionalTypes.TransactionScope)] protected void DataPortal_Delete(SystemRoleCriteria criteria) { bool cancel = false; OnDeleting(criteria, ref cancel); if (cancel) { return; } using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); using (var command = new SqlCommand("[dbo].[spCFM_SystemRole_Delete]", connection)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag)); //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."); } } } OnDeleted(); }
private SystemRole DataPortal_Fetch(SystemRoleCriteria criteria) { bool cancel = false; OnFetching(criteria, ref cancel); if (cancel) { return(null); } using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); using (var command = new SqlCommand("[dbo].[spCFM_SystemRole_Select]", connection)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag)); using (var reader = command.ExecuteReader()) { var rowParser = reader.GetRowParser <SystemRole>(); if (reader.Read()) { return(GetSystemRole(rowParser, reader)); } else { throw new Exception(String.Format("The record was not found in 'dbo.SystemRole' using the following criteria: {0}.", criteria)); } } } } OnFetched(); }
/// <summary> /// Returns a <see cref="SystemRoleList"/> object of the specified criteria. /// </summary> /// <param name="systemRoleTypeID">No additional detail available.</param> /// <returns>A <see cref="SystemRoleList"/> object of the specified criteria.</returns> public static SystemRoleList GetBySystemRoleTypeID(System.Int32 systemRoleTypeID) { var criteria = new SystemRoleCriteria { SystemRoleTypeID = systemRoleTypeID }; return(new SystemRoleList().DataPortal_Fetch(criteria)); }
public static void DeleteSystemRole(System.Int32 systemRoleID) { var criteria = new SystemRoleCriteria { SystemRoleID = systemRoleID }; new SystemRole().DataPortal_Delete(criteria); }
/// <summary> /// CodeSmith generated stub method that is called after the child <see cref="SystemRole"/> object with the specified criteria has been deleted. /// </summary> //partial void OnDeleted(); //partial void OnChildLoading(Csla.Core.IPropertyInfo childProperty, ref bool cancel); #endregion #region Exists Command /// <summary> /// Determines if a record exists in the SystemRole table in the database for the specified criteria. /// </summary> /// <param name="criteria">The criteria parameter is an <see cref="SystemRole"/> object.</param> /// <returns>A boolean value of true is returned if a record is found.</returns> public static SystemRole Exists(SystemRoleCriteria criteria) { try { return(new SystemRole().DataPortal_Fetch(criteria)); } catch (Exception ex) { } return(null); }
private SystemRoleList DataPortal_Fetch(SystemRoleCriteria criteria) { bool cancel = false; OnFetching(criteria, ref cancel); if (cancel) { return(null); } //RaiseListChangedEvents = false; // Fetch Child objects. using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); using (var command = new SqlCommand("[dbo].[spCFM_SystemRole_Select]", connection)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddRange(ADOHelper.SqlParameters(criteria.StateBag)); using (var reader = command.ExecuteReader()) { if (reader.Read()) { var rowParser = reader.GetRowParser <CFMData.SystemRole>(); do { this.Add(CFMData.SystemRole.GetSystemRole(rowParser, reader)); }while(reader.Read()); } OnFetched(); return(this); } } } //RaiseListChangedEvents = true; }
public static SystemRoleList GetByCriteria(SystemRoleCriteria criteria) { return(new SystemRoleList().DataPortal_Fetch(criteria)); // return DataPortal.Fetch<SystemRoleList>(criteria); }
/// <summary> /// CodeSmith generated stub method that is called when fetching the child <see cref="SystemRole"/> object. /// </summary> /// <param name="criteria"><see cref="SystemRoleCriteria"/> object containing the criteria of the object to fetch.</param> /// <param name="cancel">Value returned from the method indicating whether the object fetching should proceed.</param> partial void OnFetching(SystemRoleCriteria criteria, ref bool cancel);
/// <summary> /// CodeSmith generated stub method that is called when deleting the child <see cref="SystemRole"/> object. /// </summary> /// <param name="criteria"><see cref="SystemRoleCriteria"/> object containing the criteria of the object to delete.</param> /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param> //partial void OnDeleting(SystemRoleCriteria criteria, ref bool cancel); /// <summary> /// CodeSmith generated stub method that is called when deleting the child <see cref="SystemRole"/> object. /// </summary> /// <param name="criteria"><see cref="SystemRoleCriteria"/> object containing the criteria of the object to delete.</param> /// <param name="connection"></param> /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param> partial void OnDeleting(SystemRoleCriteria criteria, SqlConnection connection, ref bool cancel);
/// <summary> /// CodeSmith generated stub method that is called when deleting the <see cref="SystemRole"/> object. /// </summary> /// <param name="criteria"><see cref="SystemRoleCriteria"/> object containing the criteria of the object to delete.</param> /// <param name="cancel">Value returned from the method indicating whether the object deletion should proceed.</param> partial void OnDeleting(SystemRoleCriteria criteria, ref bool cancel);
// [Transactional(TransactionalTypes.TransactionScope)] protected void DataPortal_Update() { bool cancel = false; OnUpdating(ref cancel); if (cancel) { return; } if (OriginalSystemRoleID != SystemRoleID) { // Insert new child. SystemRole item = new SystemRole { SystemRoleID = SystemRoleID, Code = Code, Name = Name, SystemRoleTypeID = SystemRoleTypeID }; item.DataPortal_Update(); // Mark editable child lists as dirty. This code may need to be updated to one-to-one relationships. foreach (ApplicationRole itemToUpdate in ApplicationRoles) { itemToUpdate.SystemRoleID = SystemRoleID; } // 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 SystemRoleCriteria { SystemRoleID = OriginalSystemRoleID }; DataPortal_Delete(criteria); // Mark the original as the new one. OriginalSystemRoleID = SystemRoleID; OnUpdated(); return; } using (var connection = new SqlConnection(ADOHelper.ConnectionString)) { connection.Open(); SqlTransaction trans = connection.BeginTransaction(); try { using (var command = new SqlCommand("[dbo].[spCFM_SystemRole_Update]", connection, trans)) { command.CommandType = CommandType.StoredProcedure; command.Parameters.AddWithValue("@p_OriginalSystemRoleID", this.OriginalSystemRoleID); command.Parameters.AddWithValue("@p_SystemRoleID", this.SystemRoleID); command.Parameters.AddWithValue("@p_Code", this.Code); command.Parameters.AddWithValue("@p_Name", this.Name); command.Parameters.AddWithValue("@p_SystemRoleTypeID", this.SystemRoleTypeID); //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."); } _originalSystemRoleIDProperty = this.SystemRoleID; } UpdateChildren(this, connection, trans); //FieldManager.UpdateChildren(this, connection); trans.Commit(); } catch (Exception ex) { trans.Rollback(); throw; } } OnUpdated(); }