コード例 #1
0
        /// <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 AdvanceListMasters</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			7/28/2012 02:16:48 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        //internal static AdvanceListMasters PopulateObjectsFromReader(IDataReader rdr,string ConnectionString )
        //{
        //    AdvanceListMasters list = new AdvanceListMasters();
        //    while (rdr.Read())
        //    {
        //        AdvanceListMaster obj = new AdvanceListMaster(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 AdvanceListMasters</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			7/28/2012 02:16:48 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static AdvanceListMasters PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper, string ConnectionString)
        {
            AdvanceListMasters list = new AdvanceListMasters();

            if (rdr.Read())
            {
                AdvanceListMaster obj = new AdvanceListMaster(ConnectionString);
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
                while (rdr.Read())
                {
                    obj = new AdvanceListMaster(ConnectionString);
                    PopulateObjectFromReader(obj, rdr);
                    list.Add(obj);
                }
                oDatabaseHelper.Dispose();
                return list;
            }
            else
            {
                oDatabaseHelper.Dispose();
                return null;
            }
        }
コード例 #2
0
        /// <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="AdvanceListMasterPrimaryKey">Primary Key information based on which data is to be fetched.</param>
        ///
        /// <returns>object of class AdvanceListMasters</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			7/28/2012 02:16:48 PM				Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static AdvanceListMasters SelectAllByForeignKeyFromAdvanceListMaster(AdvanceListMasterPrimaryKey pk, string ConnectionString)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper(ConnectionString);
            bool ExecutionState = false;
            AdvanceListMasters 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_AdvanceListMaster_SelectAllByForeignKeyAdvanceListMaster", ref ExecutionState);
            obj = new AdvanceListMasters();
            obj = AdvanceListMaster.PopulateObjectsFromReaderWithCheckingReader(dr, oDatabaseHelper, ConnectionString);

            dr.Close();
            oDatabaseHelper.Dispose();
            return obj;
        }
コード例 #3
0
        internal static AdvanceListMasters PopulateObjectsFromReader(IDataReader rdr, string ConnectionString)
        {
            AdvanceListMasters list = new AdvanceListMasters();

            while (rdr.Read())
            {
                AdvanceListMaster obj = new AdvanceListMaster(ConnectionString);
                PopulateObjectFromReader(obj, rdr);
                list.Add(obj);
            }
            return list;
        }