/// <summary> /// Fill method for populating an entire collection of ParsedStreetAddresses /// </summary> public virtual void Fill(ParsedStreetAddresses parsedStreetAddresses) { // create the connection to use SqlConnection cnn = new SqlConnection(ParsedStreetAddress.GetConnectionString()); try { using (cnn) { // open the connection cnn.Open(); // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectParsedStreetAddresses"); // Send the collection and data to the object factory CreateObjectsFromData(parsedStreetAddresses, datareader); // close the connection cnn.Close(); } // nullify the connection cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Deletes the object. /// </summary> public virtual void Delete(ParsedStreetAddress deleteObject) { // create a new instance of the connection SqlConnection cnn = new SqlConnection(ParsedStreetAddress.GetConnectionString()); // create local variable array for the sql parameters SqlParameterHash sqlparams = null; try { // discover the parameters sqlparams = SqlHelperParameterCache.GetSpParameterSet(ParsedStreetAddress.GetConnectionString(), "gsp_DeleteParsedStreetAddress"); // Store the parameter for the LoanApplicationId attribute. sqlparams["@loanApplicationId"].Value = deleteObject.LoanApplicationId; using (cnn) { // open the connection cnn.Open(); // Execute the stored proc to perform the delete on the instance. SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_DeleteParsedStreetAddress", sqlparams); // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } // nullify the reference deleteObject = null; }
/// <summary> /// Fill method for populating a collection by PROPERTY /// </summary> public void FillByProperty(ParsedStreetAddresses parsedStreetAddresses, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(ParsedStreetAddress.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(ParsedStreetAddress.GetConnectionString(), "gsp_SelectParsedStreetAddressesByProperty"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@loanApplicationId"].Value = loanApplicationId; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectParsedStreetAddressesByProperty", sqlparams); // Send the collection and data to the object factory. CreateObjectsFromData(parsedStreetAddresses, datareader); // close the connection cnn.Close(); } // nullify the connection cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Fills a single instance with data based on its primary key values. /// </summary> public virtual void Fill(ParsedStreetAddress parsedstreetaddress, System.Int64 loanApplicationId) { // create the connection to use SqlConnection cnn = new SqlConnection(ParsedStreetAddress.GetConnectionString()); try { // discover the sql parameters SqlParameterHash sqlparams = SqlHelperParameterCache.GetSpParameterSet(ParsedStreetAddress.GetConnectionString(), "gsp_SelectParsedStreetAddress"); using (cnn) { // open the connection cnn.Open(); // set the parameters sqlparams["@loanApplicationId"].Value = loanApplicationId; // create an instance of the reader to fill. SqlDataReader datareader = SqlHelper.ExecuteReader(cnn, "gsp_SelectParsedStreetAddress", sqlparams); if (datareader.Read()) { parsedstreetaddress.SetMembers(ref datareader); } cnn.Close(); // close the connection } // nullify the connection var cnn = null; } catch (SqlException sqlex) { throw sqlex; } }
/// <summary> /// Persists the object. /// </summary> public virtual void Persist(ParsedStreetAddress persistObject, SqlTransaction sqlTrans) { // create local variable array for the sql parameters SqlParameterHash sqlparams = null; // Create a local variable for the connection SqlConnection cnn = null; // Use the parameter overload or create a new instance if (sqlTrans == null) { cnn = new SqlConnection(ParsedStreetAddress.GetConnectionString()); } try { // discover the parameters if (persistObject.Persisted) { sqlparams = SqlHelperParameterCache.GetSpParameterSet(ParsedStreetAddress.GetConnectionString(), "gsp_UpdateParsedStreetAddress"); } else { sqlparams = SqlHelperParameterCache.GetSpParameterSet(ParsedStreetAddress.GetConnectionString(), "gsp_CreateParsedStreetAddress"); } // Store the parameter for the ApartmentOrUnit attribute. if (!persistObject.ApartmentOrUnitIsNull) { sqlparams["@apartmentOrUnit"].Value = persistObject.ApartmentOrUnit; } // Store the parameter for the DirectionPrefix attribute. if (!persistObject.DirectionPrefixIsNull) { sqlparams["@directionPrefix"].Value = persistObject.DirectionPrefix; } // Store the parameter for the DirectionSuffix attribute. if (!persistObject.DirectionSuffixIsNull) { sqlparams["@directionSuffix"].Value = persistObject.DirectionSuffix; } // Store the parameter for the BuildingNumber attribute. if (!persistObject.BuildingNumberIsNull) { sqlparams["@buildingNumber"].Value = persistObject.BuildingNumber; } // Store the parameter for the HouseNumber attribute. if (!persistObject.HouseNumberIsNull) { sqlparams["@houseNumber"].Value = persistObject.HouseNumber; } // Store the parameter for the Military_APO_FPO attribute. if (!persistObject.Military_APO_FPOIsNull) { sqlparams["@military_APO_FPO"].Value = persistObject.Military_APO_FPO; } // Store the parameter for the PostOfficeBox attribute. if (!persistObject.PostOfficeBoxIsNull) { sqlparams["@postOfficeBox"].Value = persistObject.PostOfficeBox; } // Store the parameter for the RuralRoute attribute. if (!persistObject.RuralRouteIsNull) { sqlparams["@ruralRoute"].Value = persistObject.RuralRoute; } // Store the parameter for the StreetName attribute. if (!persistObject.StreetNameIsNull) { sqlparams["@streetName"].Value = persistObject.StreetName; } // Store the parameter for the StreetSuffix attribute. if (!persistObject.StreetSuffixIsNull) { sqlparams["@streetSuffix"].Value = persistObject.StreetSuffix; } // Store the parameter for the LoanApplicationId attribute. sqlparams["@loanApplicationId"].Value = persistObject.LoanApplicationId; if (!persistObject.Persisted) { // store the create only (historical fixed) values } else { // store the update only (historical changeable) values } if (sqlTrans == null) { // Process using the isolated connection using (cnn) { // open the connection cnn.Open(); if (!persistObject.Persisted) { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_CreateParsedStreetAddress", sqlparams); } else { SqlHelper.ExecuteNonQuery(cnn, CommandType.StoredProcedure, "gsp_UpdateParsedStreetAddress", sqlparams); } // close the connection after usage cnn.Close(); } // nullify the connection var cnn = null; } else { // Process using the shared transaction if (!persistObject.Persisted) { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_CreateParsedStreetAddress", sqlparams); } else { SqlHelper.ExecuteNonQuery(sqlTrans, CommandType.StoredProcedure, "gsp_UpdateParsedStreetAddress", sqlparams); } } } catch (SqlException sqlex) { throw sqlex; } }