/// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.PurchaseOrderDetail object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.PurchaseOrderDetail object will be updated
        ///     to refelect any changes made by the datasource. (ie: identity or computed columns)
        /// </remarks>
        /// <returns>Returns true if operation is successful.</returns>
        /// <exception cref="System.Exception">The command could not be executed.</exception>
        /// <exception cref="System.Data.DataException">The <paramref name="transactionManager"/> is not open.</exception>
        /// <exception cref="System.Data.Common.DbException">The command could not be executed.</exception>
        public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.PurchaseOrderDetail entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Purchasing.usp_adwTiers_PurchaseOrderDetail_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@PurchaseOrderId", DbType.Int32, entity.PurchaseOrderId);
            database.AddInParameter(commandWrapper, "@OriginalPurchaseOrderId", DbType.Int32, entity.OriginalPurchaseOrderId);
            database.AddInParameter(commandWrapper, "@PurchaseOrderDetailId", DbType.Int32, entity.PurchaseOrderDetailId);
            database.AddInParameter(commandWrapper, "@DueDate", DbType.DateTime, entity.DueDate);
            database.AddInParameter(commandWrapper, "@OrderQty", DbType.Int16, entity.OrderQty);
            database.AddInParameter(commandWrapper, "@ProductId", DbType.Int32, entity.ProductId);
            database.AddInParameter(commandWrapper, "@UnitPrice", DbType.Currency, entity.UnitPrice);
            database.AddOutParameter(commandWrapper, "@LineTotal", DbType.Currency, 8);

            database.AddInParameter(commandWrapper, "@ReceivedQty", DbType.Decimal, entity.ReceivedQty);
            database.AddInParameter(commandWrapper, "@RejectedQty", DbType.Decimal, entity.RejectedQty);
            database.AddOutParameter(commandWrapper, "@StockedQty", DbType.Decimal, 5);

            database.AddInParameter(commandWrapper, "@ModifiedDate", DbType.DateTime, entity.ModifiedDate);

            int results = 0;

            //Provider Data Requesting Command Event
            OnDataRequesting(new CommandEventArgs(commandWrapper, "Update", entity));

            if (transactionManager != null)
            {
                results = Utility.ExecuteNonQuery(transactionManager, commandWrapper);
            }
            else
            {
                results = Utility.ExecuteNonQuery(database, commandWrapper);
            }

            //Stop Tracking Now that it has been updated and persisted.
            if (DataRepository.Provider.EnableEntityTracking)
            {
                EntityManager.StopTracking(entity.EntityTrackingKey);
            }

            entity.OriginalPurchaseOrderId = entity.PurchaseOrderId;
            object _lineTotal = database.GetParameterValue(commandWrapper, "@LineTotal");

            entity.LineTotal = (System.Decimal)_lineTotal;
            object _stockedQty = database.GetParameterValue(commandWrapper, "@StockedQty");

            entity.StockedQty = (System.Decimal)_stockedQty;

            entity.AcceptChanges();

            //Provider Data Requested Command Event
            OnDataRequested(new CommandEventArgs(commandWrapper, "Update", entity));

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.PurchaseOrderDetail Convert(Nettiers.AdventureWorks.Entities.PurchaseOrderDetail outItem, WsProxy.PurchaseOrderDetail item)
        {
            if (item != null && outItem != null)
            {
                outItem.PurchaseOrderId       = item.PurchaseOrderId;
                outItem.PurchaseOrderDetailId = item.PurchaseOrderDetailId;
                outItem.DueDate      = item.DueDate;
                outItem.OrderQty     = item.OrderQty;
                outItem.ProductId    = item.ProductId;
                outItem.UnitPrice    = item.UnitPrice;
                outItem.LineTotal    = item.LineTotal;
                outItem.ReceivedQty  = item.ReceivedQty;
                outItem.RejectedQty  = item.RejectedQty;
                outItem.StockedQty   = item.StockedQty;
                outItem.ModifiedDate = item.ModifiedDate;

                outItem.OriginalPurchaseOrderId = item.PurchaseOrderId;
                outItem.AcceptChanges();
            }

            return(outItem);
        }
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.PurchaseOrderDetail object to update.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.PurchaseOrderDetail entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.PurchaseOrderDetail result = proxy.PurchaseOrderDetailProvider_Update(Convert(entity));
                Convert(entity, result);
                entity.AcceptChanges();
                return(true);
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }