/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of ContactDeleteds</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/28/2009 2:29:41 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static ContactDeleteds PopulateObjectsFromReader(IDataReader rdr, string ConnectionString) { ContactDeleteds list = new ContactDeleteds(); while (rdr.Read()) { ContactDeleted obj = new ContactDeleted(ConnectionString); PopulateObjectFromReader(obj,rdr); list.Add(obj); } return list; }
/// <summary> /// Populates the fields for multiple objects from the columns found in an open reader. /// </summary> /// /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param> /// /// <returns>Object of ContactDeleteds</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/28/2009 2:29:41 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// internal static ContactDeleteds PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper, string ConnectionString) { ContactDeleteds list = new ContactDeleteds(); if (rdr.Read()) { ContactDeleted obj = new ContactDeleted(ConnectionString); PopulateObjectFromReader(obj, rdr); list.Add(obj); while (rdr.Read()) { obj = new ContactDeleted(ConnectionString); PopulateObjectFromReader(obj, rdr); list.Add(obj); } oDatabaseHelper.Dispose(); return list; } else { oDatabaseHelper.Dispose(); return null; } }
/// <summary> /// This method will get row(s) from the database using the value of the field specified /// along with the details of the child table. /// </summary> /// /// <param name="pk" type="ContactMasterPrimaryKey">Primary Key information based on which data is to be fetched.</param> /// /// <returns>object of class ContactDeleteds</returns> /// /// <remarks> /// /// <RevisionHistory> /// Author Date Description /// DLGenerator 12/28/2009 2:29:41 PM Created function /// /// </RevisionHistory> /// /// </remarks> /// public static ContactDeleteds SelectAllByForeignKeyFromContactMaster(ContactMasterPrimaryKey pk, String ConnectionString) { DatabaseHelper oDatabaseHelper = new DatabaseHelper(ConnectionString); bool ExecutionState = false; ContactDeleteds obj = null; // Pass the values of all key parameters to the stored procedure. System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues(); foreach (string key in nvc.Keys) { oDatabaseHelper.AddParameter("@" + key,nvc[key] ); } // The parameter '@ErrorCode' will contain the status after execution of the stored procedure. oDatabaseHelper.AddParameter("@ErrorCode", -1, System.Data.ParameterDirection.Output); IDataReader dr=oDatabaseHelper.ExecuteReader("sp_ContactDeleted_SelectAllByForeignKeyContactMaster", ref ExecutionState); obj = new ContactDeleteds(); obj = ContactDeleted.PopulateObjectsFromReaderWithCheckingReader(dr, oDatabaseHelper,ConnectionString); dr.Close(); oDatabaseHelper.Dispose(); return obj; }