/// <summary> /// Inserts a Nettiers.AdventureWorks.Entities.TimestampPk object into the datasource using a transaction. /// </summary> /// <param name="transactionManager"><see cref="TransactionManager"/> object</param> /// <param name="entity">Nettiers.AdventureWorks.Entities.TimestampPk object to insert.</param> /// <remarks> /// After inserting into the datasource, the Nettiers.AdventureWorks.Entities.TimestampPk 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.TimestampPk entity) { SqlDatabase database = new SqlDatabase(this._connectionString); DbCommand commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Test.usp_adwTiers_TimestampPK_Insert", _useStoredProcedure); database.AddOutParameter(commandWrapper, "@TimestampPk", DbType.Binary, 8); database.AddInParameter(commandWrapper, "@SomeText", DbType.AnsiString, entity.SomeText); 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 _timestampPk = database.GetParameterValue(commandWrapper, "@TimestampPk"); entity.TimestampPk = (System.Byte[])_timestampPk; entity.AcceptChanges(); //Provider Data Requested Command Event OnDataRequested(new CommandEventArgs(commandWrapper, "Insert", entity)); return(Convert.ToBoolean(results)); }
///<summary> /// A simple factory method to create a new <see cref="TimestampPk"/> instance. ///</summary> ///<param name="_someText"></param> public static TimestampPk CreateTimestampPk(System.String _someText) { TimestampPk newTimestampPk = new TimestampPk(); newTimestampPk.SomeText = _someText; return(newTimestampPk); }
/// <summary> /// Convert a nettiers entity to the ws proxy entity. /// </summary> public static WsProxy.TimestampPk Convert(Nettiers.AdventureWorks.Entities.TimestampPk item) { WsProxy.TimestampPk outItem = new WsProxy.TimestampPk(); outItem.TimestampPk = item.TimestampPk; outItem.SomeText = item.SomeText; return(outItem); }
/// <summary> /// Convert a nettiers collection to the ws proxy collection. /// </summary> public static Nettiers.AdventureWorks.Entities.TimestampPk Convert(Nettiers.AdventureWorks.Entities.TimestampPk outItem, WsProxy.TimestampPk item) { if (item != null && outItem != null) { outItem.TimestampPk = item.TimestampPk; outItem.SomeText = item.SomeText; outItem.AcceptChanges(); } return(outItem); }
/// <summary> /// Inserts a mock TimestampPk entity into the database. /// </summary> private void Step_01_Insert_Generated() { using (TransactionManager tm = CreateTransaction()) { mock = CreateMockInstance(tm); Assert.IsTrue(DataRepository.TimestampPkProvider.Insert(tm, mock), "Insert failed"); System.Console.WriteLine("DataRepository.TimestampPkProvider.Insert(mock):"); System.Console.WriteLine(mock); //normally one would commit here //tm.Commit(); //IDisposable will Rollback Transaction since it's left uncommitted } }
/// <summary> /// Update an existing row in the datasource. /// </summary> /// <param name="transactionManager"><see cref="TransactionManager"/> object</param> /// <param name="entity">Nettiers.AdventureWorks.Entities.TimestampPk object to update.</param> /// <remarks> /// After updating the datasource, the Nettiers.AdventureWorks.Entities.TimestampPk 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.TimestampPk entity) { SqlDatabase database = new SqlDatabase(this._connectionString); DbCommand commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "Test.usp_adwTiers_TimestampPK_Update", _useStoredProcedure); database.AddInParameter(commandWrapper, "@TimestampPk", DbType.Binary, entity.TimestampPk); database.AddInParameter(commandWrapper, "@SomeText", DbType.AnsiString, entity.SomeText); database.AddOutParameter(commandWrapper, "@ReturnedTimestampPk", 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.TimestampPk = (System.Byte[])database.GetParameterValue(commandWrapper, "@ReturnedTimestampPk"); entity.AcceptChanges(); //Provider Data Requested Command Event OnDataRequested(new CommandEventArgs(commandWrapper, "Update", entity)); return(Convert.ToBoolean(results)); }
///<summary> /// Returns a Typed TimestampPk Entity ///</summary> protected virtual TimestampPk Copy(IDictionary existingCopies) { if (existingCopies == null) { // This is the root of the tree to be copied! existingCopies = new Hashtable(); } //shallow copy entity TimestampPk copy = new TimestampPk(); existingCopies.Add(this, copy); copy.SuppressEntityEvents = true; copy.TimestampPk = this.TimestampPk; copy.SomeText = this.SomeText; copy.EntityState = this.EntityState; copy.SuppressEntityEvents = false; return(copy); }
/// <summary> /// Inserts a Nettiers.AdventureWorks.Entities.TimestampPk object into the datasource using a transaction. /// </summary> /// <param name="transactionManager"><see cref="TransactionManager"/> object</param> /// <param name="entity">Nettiers.AdventureWorks.Entities.TimestampPk object to insert.</param> /// <remarks></remarks> /// <returns>Returns true if operation is successful.</returns> public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.TimestampPk entity) { WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices(); proxy.Url = Url; try { WsProxy.TimestampPk result = proxy.TimestampPkProvider_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 TimestampPk children. /// </summary> private void Step_03_DeepLoad_Generated() { using (TransactionManager tm = CreateTransaction()) { int count = -1; mock = CreateMockInstance(tm); mockCollection = DataRepository.TimestampPkProvider.GetPaged(tm, 0, 10, out count); DataRepository.TimestampPkProvider.DeepLoading += new EntityProviderBaseCore<TimestampPk, TimestampPkKey>.DeepLoadingEventHandler( delegate(object sender, DeepSessionEventArgs e) { if (e.DeepSession.Count > 3) e.Cancel = true; } ); if (mockCollection.Count > 0) { DataRepository.TimestampPkProvider.DeepLoad(tm, mockCollection[0]); System.Console.WriteLine("TimestampPk instance correctly deep loaded at 1 level."); mockCollection.Add(mock); // DataRepository.TimestampPkProvider.DeepSave(tm, mockCollection); } //normally one would commit here //tm.Commit(); //IDisposable will Rollback Transaction since it's left uncommitted } }
/// <summary> /// Convert a nettiers collection to the ws proxy collection. /// </summary> public static Nettiers.AdventureWorks.Entities.TimestampPk Convert(WsProxy.TimestampPk item) { Nettiers.AdventureWorks.Entities.TimestampPk outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.TimestampPk(); Convert(outItem, item); return(outItem); }
/// <summary> /// Serialize a TimestampPk 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_TimestampPkCollection.xml"); mock = CreateMockInstance(tm); TList<TimestampPk> mockCollection = new TList<TimestampPk>(); mockCollection.Add(mock); EntityHelper.SerializeXml(mockCollection, fileName); Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found"); System.Console.WriteLine("TList<TimestampPk> correctly serialized to a temporary file."); } }
/// <summary> /// Test methods exposed by the EntityHelper class. /// </summary> private void Step_20_TestEntityHelper_Generated() { using (TransactionManager tm = CreateTransaction()) { mock = CreateMockInstance(tm); TimestampPk entity = mock.Copy() as TimestampPk; entity = (TimestampPk)mock.Clone(); Assert.IsTrue(TimestampPk.ValueEquals(entity, mock), "Clone is not working"); } }
/// <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(TimestampPk mock) { //Code your changes to the data object here. }
///<summary> /// Update the Typed TimestampPk Entity with modified mock values. ///</summary> static public void UpdateMockInstance(TransactionManager tm, TimestampPk mock) { TimestampPkTest.UpdateMockInstance_Generated(tm, mock); // make any alterations necessary // (i.e. for DB check constraints, special test cases, etc.) SetSpecialTestData(mock); }
/// <summary> /// Serialize the mock TimestampPk 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_TimestampPk.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> /// Returns a Typed TimestampPk Entity with mock values. ///</summary> static public TimestampPk CreateMockInstance_Generated(TransactionManager tm) { TimestampPk mock = new TimestampPk(); mock.SomeText = TestUtility.Instance.RandomString(24, false);; // create a temporary collection and add the item to it TList<TimestampPk> tempMockCollection = new TList<TimestampPk>(); tempMockCollection.Add(mock); tempMockCollection.Remove(mock); return (TimestampPk)mock; }
///<summary> /// Update the Typed TimestampPk Entity with modified mock values. ///</summary> static public void UpdateMockInstance_Generated(TransactionManager tm, TimestampPk mock) { mock.SomeText = TestUtility.Instance.RandomString(24, false);; }