Inheritance: ProductProductPhotoBase
示例#1
0
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.ProductProductPhoto object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.ProductProductPhoto object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the Nettiers.AdventureWorks.Entities.ProductProductPhoto 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.ProductProductPhoto entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Production.usp_adwTiers_ProductProductPhoto_Insert", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@ProductId", DbType.Int32, entity.ProductId);
            database.AddInParameter(commandWrapper, "@ProductPhotoId", DbType.Int32, entity.ProductPhotoId);
            database.AddInParameter(commandWrapper, "@Primary", DbType.Boolean, entity.Primary);
            database.AddInParameter(commandWrapper, "@ModifiedDate", DbType.DateTime, entity.ModifiedDate);

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


            entity.OriginalProductId      = entity.ProductId;
            entity.OriginalProductPhotoId = entity.ProductPhotoId;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
示例#2
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.ProductProductPhoto Convert(Nettiers.AdventureWorks.Entities.ProductProductPhoto item)
        {
            WsProxy.ProductProductPhoto outItem = new WsProxy.ProductProductPhoto();
            outItem.ProductId      = item.ProductId;
            outItem.ProductPhotoId = item.ProductPhotoId;
            outItem.Primary        = item.Primary;
            outItem.ModifiedDate   = item.ModifiedDate;

            outItem.OriginalProductId      = item.OriginalProductId;
            outItem.OriginalProductPhotoId = item.OriginalProductPhotoId;

            return(outItem);
        }
示例#3
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.ProductProductPhoto Convert(Nettiers.AdventureWorks.Entities.ProductProductPhoto outItem, WsProxy.ProductProductPhoto item)
        {
            if (item != null && outItem != null)
            {
                outItem.ProductId      = item.ProductId;
                outItem.ProductPhotoId = item.ProductPhotoId;
                outItem.Primary        = item.Primary;
                outItem.ModifiedDate   = item.ModifiedDate;

                outItem.OriginalProductId      = item.ProductId;
                outItem.OriginalProductPhotoId = item.ProductPhotoId;
                outItem.AcceptChanges();
            }

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

            try
            {
                WsProxy.ProductProductPhoto result = proxy.ProductProductPhotoProvider_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;
            }
        }
		/// <summary>
		/// Deep load all ProductProductPhoto children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.ProductProductPhotoProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.ProductProductPhotoProvider.DeepLoading += new EntityProviderBaseCore<ProductProductPhoto, ProductProductPhotoKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.ProductProductPhotoProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("ProductProductPhoto instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.ProductProductPhotoProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
		///<summary>
		///  Update the Typed ProductProductPhoto Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, ProductProductPhoto mock)
		{
			mock.Primary = TestUtility.Instance.RandomBoolean();
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Product mockProductByProductId = ProductTest.CreateMockInstance(tm);
			DataRepository.ProductProvider.Insert(tm, mockProductByProductId);
			mock.ProductId = mockProductByProductId.ProductId;
					
			//OneToOneRelationship
			ProductPhoto mockProductPhotoByProductPhotoId = ProductPhotoTest.CreateMockInstance(tm);
			DataRepository.ProductPhotoProvider.Insert(tm, mockProductPhotoByProductPhotoId);
			mock.ProductPhotoId = mockProductPhotoByProductPhotoId.ProductPhotoId;
					
		}
		///<summary>
		///  Returns a Typed ProductProductPhoto Entity with mock values.
		///</summary>
		static public ProductProductPhoto CreateMockInstance_Generated(TransactionManager tm)
		{		
			ProductProductPhoto mock = new ProductProductPhoto();
						
			mock.Primary = TestUtility.Instance.RandomBoolean();
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Product mockProductByProductId = ProductTest.CreateMockInstance(tm);
			DataRepository.ProductProvider.Insert(tm, mockProductByProductId);
			mock.ProductId = mockProductByProductId.ProductId;
			//OneToOneRelationship
			ProductPhoto mockProductPhotoByProductPhotoId = ProductPhotoTest.CreateMockInstance(tm);
			DataRepository.ProductPhotoProvider.Insert(tm, mockProductPhotoByProductPhotoId);
			mock.ProductPhotoId = mockProductPhotoByProductPhotoId.ProductPhotoId;
		
			// create a temporary collection and add the item to it
			TList<ProductProductPhoto> tempMockCollection = new TList<ProductProductPhoto>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (ProductProductPhoto)mock;
		}
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				ProductProductPhoto entity = mock.Copy() as ProductProductPhoto;
				entity = (ProductProductPhoto)mock.Clone();
				Assert.IsTrue(ProductProductPhoto.ValueEquals(entity, mock), "Clone is not working");
			}
		}
		/// <summary>
		/// Serialize a ProductProductPhoto 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_ProductProductPhotoCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<ProductProductPhoto> mockCollection = new TList<ProductProductPhoto>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<ProductProductPhoto> correctly serialized to a temporary file.");					
			}
		}
		/// <summary>
		/// Serialize the mock ProductProductPhoto 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_ProductProductPhoto.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.");			
			}
		}
		/// <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(ProductProductPhoto mock)
        {
            //Code your changes to the data object here.
        }
        ///<summary>
        ///  Update the Typed ProductProductPhoto Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, ProductProductPhoto mock)
        {
            ProductProductPhotoTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }
示例#13
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.ProductProductPhoto Convert(WsProxy.ProductProductPhoto item)
 {
     Nettiers.AdventureWorks.Entities.ProductProductPhoto outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.ProductProductPhoto();
     Convert(outItem, item);
     return(outItem);
 }