/// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.EmployeeDepartmentHistory object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.EmployeeDepartmentHistory 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.EmployeeDepartmentHistory entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "HumanResources.usp_adwTiers_EmployeeDepartmentHistory_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@EmployeeId", DbType.Int32, entity.EmployeeId);
            database.AddInParameter(commandWrapper, "@OriginalEmployeeId", DbType.Int32, entity.OriginalEmployeeId);
            database.AddInParameter(commandWrapper, "@DepartmentId", DbType.Int16, entity.DepartmentId);
            database.AddInParameter(commandWrapper, "@OriginalDepartmentId", DbType.Int16, entity.OriginalDepartmentId);
            database.AddInParameter(commandWrapper, "@ShiftId", DbType.Byte, entity.ShiftId);
            database.AddInParameter(commandWrapper, "@OriginalShiftId", DbType.Byte, entity.OriginalShiftId);
            database.AddInParameter(commandWrapper, "@StartDate", DbType.DateTime, entity.StartDate);
            database.AddInParameter(commandWrapper, "@OriginalStartDate", DbType.DateTime, entity.OriginalStartDate);
            database.AddInParameter(commandWrapper, "@EndDate", DbType.DateTime, (entity.EndDate.HasValue ? (object)entity.EndDate : System.DBNull.Value));
            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.OriginalEmployeeId   = entity.EmployeeId;
            entity.OriginalDepartmentId = entity.DepartmentId;
            entity.OriginalShiftId      = entity.ShiftId;
            entity.OriginalStartDate    = entity.StartDate;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.EmployeeDepartmentHistory Convert(Nettiers.AdventureWorks.Entities.EmployeeDepartmentHistory outItem, WsProxy.EmployeeDepartmentHistory item)
        {
            if (item != null && outItem != null)
            {
                outItem.EmployeeId   = item.EmployeeId;
                outItem.DepartmentId = item.DepartmentId;
                outItem.ShiftId      = item.ShiftId;
                outItem.StartDate    = item.StartDate;
                outItem.EndDate      = item.EndDate;
                outItem.ModifiedDate = item.ModifiedDate;

                outItem.OriginalEmployeeId   = item.EmployeeId;
                outItem.OriginalStartDate    = item.StartDate;
                outItem.OriginalDepartmentId = item.DepartmentId;
                outItem.OriginalShiftId      = item.ShiftId;
                outItem.AcceptChanges();
            }

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

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