Inheritance: EmployeeAddressBase
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.EmployeeAddress Convert(Nettiers.AdventureWorks.Entities.EmployeeAddress item)
        {
            WsProxy.EmployeeAddress outItem = new WsProxy.EmployeeAddress();
            outItem.EmployeeId   = item.EmployeeId;
            outItem.AddressId    = item.AddressId;
            outItem.Rowguid      = item.Rowguid;
            outItem.ModifiedDate = item.ModifiedDate;

            outItem.OriginalEmployeeId = item.OriginalEmployeeId;
            outItem.OriginalAddressId  = item.OriginalAddressId;

            return(outItem);
        }
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.EmployeeAddress Convert(Nettiers.AdventureWorks.Entities.EmployeeAddress outItem, WsProxy.EmployeeAddress item)
        {
            if (item != null && outItem != null)
            {
                outItem.EmployeeId   = item.EmployeeId;
                outItem.AddressId    = item.AddressId;
                outItem.Rowguid      = item.Rowguid;
                outItem.ModifiedDate = item.ModifiedDate;

                outItem.OriginalEmployeeId = item.EmployeeId;
                outItem.OriginalAddressId  = item.AddressId;
                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.EmployeeAddress object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.EmployeeAddress 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.EmployeeAddress entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "HumanResources.usp_adwTiers_EmployeeAddress_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@EmployeeId", DbType.Int32, entity.EmployeeId);
            database.AddInParameter(commandWrapper, "@OriginalEmployeeId", DbType.Int32, entity.OriginalEmployeeId);
            database.AddInParameter(commandWrapper, "@AddressId", DbType.Int32, entity.AddressId);
            database.AddInParameter(commandWrapper, "@OriginalAddressId", DbType.Int32, entity.OriginalAddressId);
            database.AddInParameter(commandWrapper, "@Rowguid", DbType.Guid, entity.Rowguid);
            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.OriginalAddressId  = entity.AddressId;

            entity.AcceptChanges();

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

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

            try
            {
                WsProxy.EmployeeAddress result = proxy.EmployeeAddressProvider_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>
        ///     Inserts a Nettiers.AdventureWorks.Entities.EmployeeAddress object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.EmployeeAddress object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the Nettiers.AdventureWorks.Entities.EmployeeAddress 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.EmployeeAddress entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "HumanResources.usp_adwTiers_EmployeeAddress_Insert", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@EmployeeId", DbType.Int32, entity.EmployeeId);
            database.AddInParameter(commandWrapper, "@AddressId", DbType.Int32, entity.AddressId);
            database.AddOutParameter(commandWrapper, "@Rowguid", DbType.Guid, 16);
            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);
            }

            object _rowguid = database.GetParameterValue(commandWrapper, "@Rowguid");

            entity.Rowguid = (System.Guid)_rowguid;

            entity.OriginalEmployeeId = entity.EmployeeId;
            entity.OriginalAddressId  = entity.AddressId;

            entity.AcceptChanges();

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

            return(Convert.ToBoolean(results));
        }
		/// <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(EmployeeAddress mock)
        {
            //Code your changes to the data object here.
        }
        ///<summary>
        ///  Update the Typed EmployeeAddress Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, EmployeeAddress mock)
        {
            EmployeeAddressTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }
		/// <summary>
		/// Deep load all EmployeeAddress children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.EmployeeAddressProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.EmployeeAddressProvider.DeepLoading += new EntityProviderBaseCore<EmployeeAddress, EmployeeAddressKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.EmployeeAddressProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("EmployeeAddress instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.EmployeeAddressProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
		///<summary>
		///  Update the Typed EmployeeAddress Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, EmployeeAddress mock)
		{
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Address mockAddressByAddressId = AddressTest.CreateMockInstance(tm);
			DataRepository.AddressProvider.Insert(tm, mockAddressByAddressId);
			mock.AddressId = mockAddressByAddressId.AddressId;
					
			//OneToOneRelationship
			Employee mockEmployeeByEmployeeId = EmployeeTest.CreateMockInstance(tm);
			DataRepository.EmployeeProvider.Insert(tm, mockEmployeeByEmployeeId);
			mock.EmployeeId = mockEmployeeByEmployeeId.EmployeeId;
					
		}
		///<summary>
		///  Returns a Typed EmployeeAddress Entity with mock values.
		///</summary>
		static public EmployeeAddress CreateMockInstance_Generated(TransactionManager tm)
		{		
			EmployeeAddress mock = new EmployeeAddress();
						
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
			//OneToOneRelationship
			Address mockAddressByAddressId = AddressTest.CreateMockInstance(tm);
			DataRepository.AddressProvider.Insert(tm, mockAddressByAddressId);
			mock.AddressId = mockAddressByAddressId.AddressId;
			//OneToOneRelationship
			Employee mockEmployeeByEmployeeId = EmployeeTest.CreateMockInstance(tm);
			DataRepository.EmployeeProvider.Insert(tm, mockEmployeeByEmployeeId);
			mock.EmployeeId = mockEmployeeByEmployeeId.EmployeeId;
		
			// create a temporary collection and add the item to it
			TList<EmployeeAddress> tempMockCollection = new TList<EmployeeAddress>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (EmployeeAddress)mock;
		}
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				EmployeeAddress entity = mock.Copy() as EmployeeAddress;
				entity = (EmployeeAddress)mock.Clone();
				Assert.IsTrue(EmployeeAddress.ValueEquals(entity, mock), "Clone is not working");
			}
		}
		/// <summary>
		/// Serialize a EmployeeAddress 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_EmployeeAddressCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<EmployeeAddress> mockCollection = new TList<EmployeeAddress>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<EmployeeAddress> correctly serialized to a temporary file.");					
			}
		}
		/// <summary>
		/// Serialize the mock EmployeeAddress 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_EmployeeAddress.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>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.EmployeeAddress Convert(WsProxy.EmployeeAddress item)
 {
     Nettiers.AdventureWorks.Entities.EmployeeAddress outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.EmployeeAddress();
     Convert(outItem, item);
     return(outItem);
 }