/// <summary> /// Adds a new record into the <c>tblCurrency</c> table. /// </summary> /// <param name="value">The <see cref="tblCurrencyRow"/> object to be inserted.</param> public virtual void Insert(tblCurrencyRow value) { IDbCommand cmd = _db.CreateCommand("dbo._tblCurrency_Insert", true); AddParameter(cmd, "Currency_Name", value.Currency_Name); value.Currency_Id = Convert.ToInt32(cmd.ExecuteScalar()); }
/// <summary> /// Updates a record in the <c>tblCurrency</c> table. /// </summary> /// <param name="value">The <see cref="tblCurrencyRow"/> /// object used to update the table record.</param> /// <returns>true if the record was updated; otherwise, false.</returns> public virtual bool Update(tblCurrencyRow value) { IDbCommand cmd = _db.CreateCommand("dbo._tblCurrency_Update", true); AddParameter(cmd, "Currency_Name", value.Currency_Name); AddParameter(cmd, "Currency_Id", value.Currency_Id); return(0 != cmd.ExecuteNonQuery()); }
/// <summary> /// Converts <see cref="System.Data.DataRow"/> to <see cref="tblCurrencyRow"/>. /// </summary> /// <param name="row">The <see cref="System.Data.DataRow"/> object to be mapped.</param> /// <returns>A reference to the <see cref="tblCurrencyRow"/> object.</returns> protected virtual tblCurrencyRow MapRow(DataRow row) { tblCurrencyRow mappedObject = new tblCurrencyRow(); DataTable dataTable = row.Table; DataColumn dataColumn; // Column "Currency_Id" dataColumn = dataTable.Columns["Currency_Id"]; if (!row.IsNull(dataColumn)) { mappedObject.Currency_Id = (int)row[dataColumn]; } // Column "Currency_Name" dataColumn = dataTable.Columns["Currency_Name"]; if (!row.IsNull(dataColumn)) { mappedObject.Currency_Name = (string)row[dataColumn]; } return(mappedObject); }
/// <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="tblCurrencyRow"/> objects.</returns> protected virtual tblCurrencyRow[] 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 currency_IdColumnIndex = reader.GetOrdinal("Currency_Id"); int currency_NameColumnIndex = reader.GetOrdinal("Currency_Name"); System.Collections.ArrayList recordList = new System.Collections.ArrayList(); int ri = -startIndex; while (reader.Read()) { ri++; if (ri > 0 && ri <= length) { tblCurrencyRow record = new tblCurrencyRow(); recordList.Add(record); record.Currency_Id = Convert.ToInt32(reader.GetValue(currency_IdColumnIndex)); record.Currency_Name = Convert.ToString(reader.GetValue(currency_NameColumnIndex)); if (ri == length && 0 != totalRecordCount) { break; } } } totalRecordCount = 0 == totalRecordCount ? ri + startIndex : -1; return((tblCurrencyRow[])(recordList.ToArray(typeof(tblCurrencyRow)))); }
/// <summary> /// Deletes the specified object from the <c>tblCurrency</c> table. /// </summary> /// <param name="value">The <see cref="tblCurrencyRow"/> object to delete.</param> /// <returns>true if the record was deleted; otherwise, false.</returns> public bool Delete(tblCurrencyRow value) { return(DeleteByPrimaryKey(value.Currency_Id)); }