Esempio n. 1
0
        /// <summary>
        /// Converts <see cref="System.Data.DataRow"/> to <see cref="aspnet_PersonalizationAllUsersRow"/>.
        /// </summary>
        /// <param name="row">The <see cref="System.Data.DataRow"/> object to be mapped.</param>
        /// <returns>A reference to the <see cref="aspnet_PersonalizationAllUsersRow"/> object.</returns>
        protected virtual aspnet_PersonalizationAllUsersRow MapRow(DataRow row)
        {
            aspnet_PersonalizationAllUsersRow mappedObject = new aspnet_PersonalizationAllUsersRow();
            DataTable  dataTable = row.Table;
            DataColumn dataColumn;

            // Column "PathId"
            dataColumn = dataTable.Columns["PathId"];
            if (!row.IsNull(dataColumn))
            {
                mappedObject.PathId = (System.Guid)row[dataColumn];
            }
            // Column "PageSettings"
            dataColumn = dataTable.Columns["PageSettings"];
            if (!row.IsNull(dataColumn))
            {
                mappedObject.PageSettings = (byte[])row[dataColumn];
            }
            // Column "LastUpdatedDate"
            dataColumn = dataTable.Columns["LastUpdatedDate"];
            if (!row.IsNull(dataColumn))
            {
                mappedObject.LastUpdatedDate = (System.DateTime)row[dataColumn];
            }
            return(mappedObject);
        }
Esempio n. 2
0
        /// <summary>
        /// Updates a record in the <c>aspnet_PersonalizationAllUsers</c> table.
        /// </summary>
        /// <param name="value">The <see cref="aspnet_PersonalizationAllUsersRow"/>
        /// object used to update the table record.</param>
        /// <returns>true if the record was updated; otherwise, false.</returns>
        public virtual bool Update(aspnet_PersonalizationAllUsersRow value)
        {
            IDbCommand cmd = _db.CreateCommand("dbo._aspnet_PersonalizationAllUsers_Update", true);

            AddParameter(cmd, "PageSettings", value.PageSettings);
            AddParameter(cmd, "LastUpdatedDate", value.LastUpdatedDate);
            AddParameter(cmd, "PathId", value.PathId);
            return(0 != cmd.ExecuteNonQuery());
        }
Esempio n. 3
0
        /// <summary>
        /// Reads data from the provided data reader and returns
        /// an array of mapped objects.
        /// </summary>
        /// <param name="reader">The <see cref="System.Data.IDataReader"/> object to read data from the table.</param>
        /// <param name="startIndex">The index of the first record to map.</param>
        /// <param name="length">The number of records to map.</param>
        /// <param name="totalRecordCount">A reference parameter that returns the total number
        /// of records in the reader object if 0 was passed into the method; otherwise it returns -1.</param>
        /// <returns>An array of <see cref="aspnet_PersonalizationAllUsersRow"/> objects.</returns>
        protected virtual aspnet_PersonalizationAllUsersRow[] MapRecords(IDataReader reader,
                                                                         int startIndex, int length, ref int totalRecordCount)
        {
            if (0 > startIndex)
            {
                throw new ArgumentOutOfRangeException("startIndex", startIndex, "StartIndex cannot be less than zero.");
            }
            if (0 > length)
            {
                throw new ArgumentOutOfRangeException("length", length, "Length cannot be less than zero.");
            }

            int pathIdColumnIndex          = reader.GetOrdinal("PathId");
            int pageSettingsColumnIndex    = reader.GetOrdinal("PageSettings");
            int lastUpdatedDateColumnIndex = reader.GetOrdinal("LastUpdatedDate");

            System.Collections.ArrayList recordList = new System.Collections.ArrayList();
            int ri = -startIndex;

            while (reader.Read())
            {
                ri++;
                if (ri > 0 && ri <= length)
                {
                    aspnet_PersonalizationAllUsersRow record = new aspnet_PersonalizationAllUsersRow();
                    recordList.Add(record);

                    record.PathId          = reader.GetGuid(pathIdColumnIndex);
                    record.PageSettings    = (byte[])reader.GetValue(pageSettingsColumnIndex);
                    record.LastUpdatedDate = Convert.ToDateTime(reader.GetValue(lastUpdatedDateColumnIndex));

                    if (ri == length && 0 != totalRecordCount)
                    {
                        break;
                    }
                }
            }

            totalRecordCount = 0 == totalRecordCount ? ri + startIndex : -1;
            return((aspnet_PersonalizationAllUsersRow[])(recordList.ToArray(typeof(aspnet_PersonalizationAllUsersRow))));
        }
Esempio n. 4
0
 public aspnet_PersonalizationAllUsersRowChangeEvent(aspnet_PersonalizationAllUsersRow row,System.Data.DataRowAction action)
 {
    this.eventRow = row;
    this.eventAction = action;
 }
Esempio n. 5
0
 public void Removeaspnet_PersonalizationAllUsersRow(aspnet_PersonalizationAllUsersRow row)
 {
    this.Rows.Remove(row);
 }
Esempio n. 6
0
 public void Addaspnet_PersonalizationAllUsersRow(aspnet_PersonalizationAllUsersRow row)
 {
    this.Rows.Add(row);
 }
Esempio n. 7
0
 /// <summary>
 /// Deletes the specified object from the <c>aspnet_PersonalizationAllUsers</c> table.
 /// </summary>
 /// <param name="value">The <see cref="aspnet_PersonalizationAllUsersRow"/> object to delete.</param>
 /// <returns>true if the record was deleted; otherwise, false.</returns>
 public bool Delete(aspnet_PersonalizationAllUsersRow value)
 {
     return(DeleteByPrimaryKey(value.PathId));
 }