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