/// <summary> /// Factory method. Loads a <see cref="G04_SubContinent"/> object from the given G04_SubContinentDto. /// </summary> /// <param name="data">The <see cref="G04_SubContinentDto"/>.</param> /// <returns>A reference to the fetched <see cref="G04_SubContinent"/> object.</returns> internal static G04_SubContinent GetG04_SubContinent(G04_SubContinentDto data) { G04_SubContinent obj = new G04_SubContinent(); obj.Fetch(data); return(obj); }
private void Child_Update() { if (!IsDirty) { return; } var dto = new G04_SubContinentDto(); dto.SubContinent_ID = SubContinent_ID; dto.SubContinent_Name = SubContinent_Name; using (var dalManager = DalFactorySelfLoadSoftDelete.GetManager()) { var args = new DataPortalHookArgs(dto); OnUpdatePre(args); var dal = dalManager.GetProvider <IG04_SubContinentDal>(); using (BypassPropertyChecks) { var resultDto = dal.Update(dto); args = new DataPortalHookArgs(resultDto); } OnUpdatePost(args); // flushes all pending data operations FieldManager.UpdateChildren(this); } }
/// <summary> /// Loads a <see cref="G04_SubContinent"/> object from the given <see cref="G04_SubContinentDto"/>. /// </summary> /// <param name="data">The G04_SubContinentDto to use.</param> private void Fetch(G04_SubContinentDto data) { // Value properties LoadProperty(SubContinent_IDProperty, data.SubContinent_ID); LoadProperty(SubContinent_NameProperty, data.SubContinent_Name); var args = new DataPortalHookArgs(data); OnFetchRead(args); }
private G04_SubContinentDto Fetch(SafeDataReader dr) { var g04_SubContinent = new G04_SubContinentDto(); // Value properties g04_SubContinent.SubContinent_ID = dr.GetInt32("SubContinent_ID"); g04_SubContinent.SubContinent_Name = dr.GetString("SubContinent_Name"); return(g04_SubContinent); }
/// <summary> /// Factory method. Loads a <see cref="G04_SubContinent"/> object from the given G04_SubContinentDto. /// </summary> /// <param name="data">The <see cref="G04_SubContinentDto"/>.</param> /// <returns>A reference to the fetched <see cref="G04_SubContinent"/> object.</returns> internal static G04_SubContinent GetG04_SubContinent(G04_SubContinentDto data) { G04_SubContinent obj = new G04_SubContinent(); // show the framework that this is a child object obj.MarkAsChild(); obj.Fetch(data); obj.MarkOld(); return(obj); }
/// <summary> /// Inserts a new G04_SubContinent object in the database. /// </summary> /// <param name="g04_SubContinent">The G04 Sub Continent DTO.</param> /// <returns>The new <see cref="G04_SubContinentDto"/>.</returns> public G04_SubContinentDto Insert(G04_SubContinentDto g04_SubContinent) { using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad")) { using (var cmd = new SqlCommand("AddG04_SubContinent", ctx.Connection)) { cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@Parent_Continent_ID", g04_SubContinent.Parent_Continent_ID).DbType = DbType.Int32; cmd.Parameters.AddWithValue("@SubContinent_ID", g04_SubContinent.SubContinent_ID).Direction = ParameterDirection.Output; cmd.Parameters.AddWithValue("@SubContinent_Name", g04_SubContinent.SubContinent_Name).DbType = DbType.String; cmd.ExecuteNonQuery(); g04_SubContinent.SubContinent_ID = (int)cmd.Parameters["@SubContinent_ID"].Value; } } return(g04_SubContinent); }
/// <summary> /// Updates in the database all changes made to the G04_SubContinent object. /// </summary> /// <param name="g04_SubContinent">The G04 Sub Continent DTO.</param> /// <returns>The updated <see cref="G04_SubContinentDto"/>.</returns> public G04_SubContinentDto Update(G04_SubContinentDto g04_SubContinent) { using (var ctx = ConnectionManager <SqlConnection> .GetManager("DeepLoad")) { using (var cmd = new SqlCommand("UpdateG04_SubContinent", ctx.Connection)) { cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@SubContinent_ID", g04_SubContinent.SubContinent_ID).DbType = DbType.Int32; cmd.Parameters.AddWithValue("@SubContinent_Name", g04_SubContinent.SubContinent_Name).DbType = DbType.String; var rowsAffected = cmd.ExecuteNonQuery(); if (rowsAffected == 0) { throw new DataNotFoundException("G04_SubContinent"); } } } return(g04_SubContinent); }
private void Child_Insert(G02_Continent parent) { var dto = new G04_SubContinentDto(); dto.Parent_Continent_ID = parent.Continent_ID; dto.SubContinent_Name = SubContinent_Name; using (var dalManager = DalFactorySelfLoadSoftDelete.GetManager()) { var args = new DataPortalHookArgs(dto); OnInsertPre(args); var dal = dalManager.GetProvider <IG04_SubContinentDal>(); using (BypassPropertyChecks) { var resultDto = dal.Insert(dto); LoadProperty(SubContinent_IDProperty, resultDto.SubContinent_ID); args = new DataPortalHookArgs(resultDto); } OnInsertPost(args); // flushes all pending data operations FieldManager.UpdateChildren(this); } }