/// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.TestTimestamp Convert(Nettiers.AdventureWorks.Entities.TestTimestamp outItem, WsProxy.TestTimestamp item)
        {
            if (item != null && outItem != null)
            {
                outItem.TestTimestampId = item.TestTimestampId;
                outItem.DumbField       = item.DumbField;
                outItem.Version         = item.Version;

                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.TestTimestamp object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.TestTimestamp 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>
        /// <exception cref="DBConcurrencyException">The record has been modified by an other user. Please reload the instance before updating.</exception>
        public override bool Update(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.TestTimestamp entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Test.usp_adwTiers_TestTimestamp_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@TestTimestampId", DbType.Int32, entity.TestTimestampId);
            database.AddInParameter(commandWrapper, "@DumbField", DbType.Boolean, (entity.DumbField.HasValue ? (object)entity.DumbField : System.DBNull.Value));
            database.AddInParameter(commandWrapper, "@Version", DbType.Binary, entity.Version);
            database.AddOutParameter(commandWrapper, "@ReturnedVersion", DbType.Binary, 8);

            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);
            }

            if (results == 0)
            {
                throw new DBConcurrencyException("Concurrency exception");
            }
            entity.Version = (System.Byte[])database.GetParameterValue(commandWrapper, "@ReturnedVersion");

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.TestTimestamp object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.TestTimestamp object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the Nettiers.AdventureWorks.Entities.TestTimestamp 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 Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.TestTimestamp entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Test.usp_adwTiers_TestTimestamp_Insert", _useStoredProcedure);

            database.AddOutParameter(commandWrapper, "@TestTimestampId", DbType.Int32, 4);
            database.AddInParameter(commandWrapper, "@DumbField", DbType.Boolean, (entity.DumbField.HasValue ? (object)entity.DumbField  : System.DBNull.Value));
            database.AddOutParameter(commandWrapper, "@Version", DbType.Binary, 8);

            int results = 0;

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

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

            object _testTimestampId = database.GetParameterValue(commandWrapper, "@TestTimestampId");

            entity.TestTimestampId = (System.Int32)_testTimestampId;
            object _version = database.GetParameterValue(commandWrapper, "@Version");

            entity.Version = (System.Byte[])_version;


            entity.AcceptChanges();

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

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

            try
            {
                WsProxy.TestTimestamp result = proxy.TestTimestampProvider_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;
            }
        }