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

            database.AddInParameter(commandWrapper, "@ProductId", DbType.Int32, entity.ProductId);
            database.AddInParameter(commandWrapper, "@OriginalProductId", DbType.Int32, entity.OriginalProductId);
            database.AddInParameter(commandWrapper, "@VendorId", DbType.Int32, entity.VendorId);
            database.AddInParameter(commandWrapper, "@OriginalVendorId", DbType.Int32, entity.OriginalVendorId);
            database.AddInParameter(commandWrapper, "@AverageLeadTime", DbType.Int32, entity.AverageLeadTime);
            database.AddInParameter(commandWrapper, "@StandardPrice", DbType.Currency, entity.StandardPrice);
            database.AddInParameter(commandWrapper, "@LastReceiptCost", DbType.Currency, (entity.LastReceiptCost.HasValue ? (object)entity.LastReceiptCost : System.DBNull.Value));
            database.AddInParameter(commandWrapper, "@LastReceiptDate", DbType.DateTime, (entity.LastReceiptDate.HasValue ? (object)entity.LastReceiptDate : System.DBNull.Value));
            database.AddInParameter(commandWrapper, "@MinOrderQty", DbType.Int32, entity.MinOrderQty);
            database.AddInParameter(commandWrapper, "@MaxOrderQty", DbType.Int32, entity.MaxOrderQty);
            database.AddInParameter(commandWrapper, "@OnOrderQty", DbType.Int32, (entity.OnOrderQty.HasValue ? (object)entity.OnOrderQty : System.DBNull.Value));
            database.AddInParameter(commandWrapper, "@UnitMeasureCode", DbType.StringFixedLength, entity.UnitMeasureCode);
            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.OriginalProductId = entity.ProductId;
            entity.OriginalVendorId  = entity.VendorId;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
コード例 #2
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.ProductVendor Convert(Nettiers.AdventureWorks.Entities.ProductVendor item)
        {
            WsProxy.ProductVendor outItem = new WsProxy.ProductVendor();
            outItem.ProductId       = item.ProductId;
            outItem.VendorId        = item.VendorId;
            outItem.AverageLeadTime = item.AverageLeadTime;
            outItem.StandardPrice   = item.StandardPrice;
            outItem.LastReceiptCost = item.LastReceiptCost;
            outItem.LastReceiptDate = item.LastReceiptDate;
            outItem.MinOrderQty     = item.MinOrderQty;
            outItem.MaxOrderQty     = item.MaxOrderQty;
            outItem.OnOrderQty      = item.OnOrderQty;
            outItem.UnitMeasureCode = item.UnitMeasureCode;
            outItem.ModifiedDate    = item.ModifiedDate;

            outItem.OriginalProductId = item.OriginalProductId;
            outItem.OriginalVendorId  = item.OriginalVendorId;

            return(outItem);
        }
コード例 #3
0
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.ProductVendor object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.ProductVendor object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.ProductVendor entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.ProductVendor result = proxy.ProductVendorProvider_Insert(Convert(entity));
                Convert(entity, result);
                return(true);
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }
コード例 #4
0
		/// <summary>
		/// Deep load all ProductVendor children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.ProductVendorProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.ProductVendorProvider.DeepLoading += new EntityProviderBaseCore<ProductVendor, ProductVendorKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.ProductVendorProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("ProductVendor instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.ProductVendorProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
コード例 #5
0
		///<summary>
		///  Update the Typed ProductVendor Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, ProductVendor mock)
		{
			mock.AverageLeadTime = TestUtility.Instance.RandomNumber();
			mock.StandardPrice = TestUtility.Instance.RandomShort();
			mock.LastReceiptCost = TestUtility.Instance.RandomShort();
			mock.LastReceiptDate = TestUtility.Instance.RandomDateTime();
			mock.MinOrderQty = TestUtility.Instance.RandomNumber();
			mock.MaxOrderQty = TestUtility.Instance.RandomNumber();
			mock.OnOrderQty = TestUtility.Instance.RandomNumber();
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Product mockProductByProductId = ProductTest.CreateMockInstance(tm);
			DataRepository.ProductProvider.Insert(tm, mockProductByProductId);
			mock.ProductId = mockProductByProductId.ProductId;
					
			//OneToOneRelationship
			UnitMeasure mockUnitMeasureByUnitMeasureCode = UnitMeasureTest.CreateMockInstance(tm);
			DataRepository.UnitMeasureProvider.Insert(tm, mockUnitMeasureByUnitMeasureCode);
			mock.UnitMeasureCode = mockUnitMeasureByUnitMeasureCode.UnitMeasureCode;
					
			//OneToOneRelationship
			Vendor mockVendorByVendorId = VendorTest.CreateMockInstance(tm);
			DataRepository.VendorProvider.Insert(tm, mockVendorByVendorId);
			mock.VendorId = mockVendorByVendorId.VendorId;
					
		}
コード例 #6
0
		///<summary>
		///  Returns a Typed ProductVendor Entity with mock values.
		///</summary>
		static public ProductVendor CreateMockInstance_Generated(TransactionManager tm)
		{		
			ProductVendor mock = new ProductVendor();
						
			mock.AverageLeadTime = TestUtility.Instance.RandomNumber();
			mock.StandardPrice = TestUtility.Instance.RandomShort();
			mock.LastReceiptCost = TestUtility.Instance.RandomShort();
			mock.LastReceiptDate = TestUtility.Instance.RandomDateTime();
			mock.MinOrderQty = TestUtility.Instance.RandomNumber();
			mock.MaxOrderQty = TestUtility.Instance.RandomNumber();
			mock.OnOrderQty = TestUtility.Instance.RandomNumber();
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Product mockProductByProductId = ProductTest.CreateMockInstance(tm);
			DataRepository.ProductProvider.Insert(tm, mockProductByProductId);
			mock.ProductId = mockProductByProductId.ProductId;
			//OneToOneRelationship
			UnitMeasure mockUnitMeasureByUnitMeasureCode = UnitMeasureTest.CreateMockInstance(tm);
			DataRepository.UnitMeasureProvider.Insert(tm, mockUnitMeasureByUnitMeasureCode);
			mock.UnitMeasureCode = mockUnitMeasureByUnitMeasureCode.UnitMeasureCode;
			//OneToOneRelationship
			Vendor mockVendorByVendorId = VendorTest.CreateMockInstance(tm);
			DataRepository.VendorProvider.Insert(tm, mockVendorByVendorId);
			mock.VendorId = mockVendorByVendorId.VendorId;
		
			// create a temporary collection and add the item to it
			TList<ProductVendor> tempMockCollection = new TList<ProductVendor>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (ProductVendor)mock;
		}
コード例 #7
0
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				ProductVendor entity = mock.Copy() as ProductVendor;
				entity = (ProductVendor)mock.Clone();
				Assert.IsTrue(ProductVendor.ValueEquals(entity, mock), "Clone is not working");
			}
		}
コード例 #8
0
		/// <summary>
		/// Serialize a ProductVendor collection into a temporary file.
		/// </summary>
		private void Step_08_SerializeCollection_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_ProductVendorCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<ProductVendor> mockCollection = new TList<ProductVendor>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<ProductVendor> correctly serialized to a temporary file.");					
			}
		}
コード例 #9
0
		/// <summary>
		/// Serialize the mock ProductVendor entity into a temporary file.
		/// </summary>
		private void Step_06_SerializeEntity_Generated()
		{	
			using (TransactionManager tm = CreateTransaction())
			{
				mock =  CreateMockInstance(tm);
				string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_ProductVendor.xml");
			
				EntityHelper.SerializeXml(mock, fileName);
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock not found");
					
				System.Console.WriteLine("mock correctly serialized to a temporary file.");			
			}
		}
コード例 #10
0
		/// <summary>
        /// Make any alterations necessary (i.e. for DB check constraints, special test cases, etc.)
        /// </summary>
        /// <param name="mock">Object to be modified</param>
        static private void SetSpecialTestData(ProductVendor mock)
        {
            //Code your changes to the data object here.
        }
コード例 #11
0
        ///<summary>
        ///  Update the Typed ProductVendor Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, ProductVendor mock)
        {
            ProductVendorTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }
コード例 #12
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.ProductVendor Convert(WsProxy.ProductVendor item)
 {
     Nettiers.AdventureWorks.Entities.ProductVendor outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.ProductVendor();
     Convert(outItem, item);
     return(outItem);
 }