Inheritance: DatabaseLogBase
Exemplo n.º 1
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.DatabaseLog Convert(Nettiers.AdventureWorks.Entities.DatabaseLog item)
        {
            WsProxy.DatabaseLog outItem = new WsProxy.DatabaseLog();
            outItem.DatabaseLogId  = item.DatabaseLogId;
            outItem.PostTime       = item.PostTime;
            outItem.DatabaseUser   = item.DatabaseUser;
            outItem.SafeNameEvent  = item.SafeNameEvent;
            outItem.Schema         = item.Schema;
            outItem.SafeNameObject = item.SafeNameObject;
            outItem.Tsql           = item.Tsql;
            outItem.XmlEvent       = item.XmlEvent;


            return(outItem);
        }
		/// <summary>
		/// Inserts a mock DatabaseLog entity into the database.
		/// </summary>
		private void Step_01_Insert_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				Assert.IsTrue(DataRepository.DatabaseLogProvider.Insert(tm, mock), "Insert failed");
										
				System.Console.WriteLine("DataRepository.DatabaseLogProvider.Insert(mock):");			
				System.Console.WriteLine(mock);			
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
Exemplo n.º 3
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.DatabaseLog Convert(Nettiers.AdventureWorks.Entities.DatabaseLog outItem, WsProxy.DatabaseLog item)
        {
            if (item != null && outItem != null)
            {
                outItem.DatabaseLogId  = item.DatabaseLogId;
                outItem.PostTime       = item.PostTime;
                outItem.DatabaseUser   = item.DatabaseUser;
                outItem.SafeNameEvent  = item.SafeNameEvent;
                outItem.Schema         = item.Schema;
                outItem.SafeNameObject = item.SafeNameObject;
                outItem.Tsql           = item.Tsql;
                outItem.XmlEvent       = item.XmlEvent;

                outItem.AcceptChanges();
            }

            return(outItem);
        }
Exemplo n.º 4
0
        /// <summary>
        ///     Update an existing row in the datasource.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.DatabaseLog object to update.</param>
        /// <remarks>
        ///		After updating the datasource, the Nettiers.AdventureWorks.Entities.DatabaseLog 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.DatabaseLog entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.usp_adwTiers_DatabaseLog_Update", _useStoredProcedure);

            database.AddInParameter(commandWrapper, "@DatabaseLogId", DbType.Int32, entity.DatabaseLogId);
            database.AddInParameter(commandWrapper, "@PostTime", DbType.DateTime, entity.PostTime);
            database.AddInParameter(commandWrapper, "@DatabaseUser", DbType.String, entity.DatabaseUser);
            database.AddInParameter(commandWrapper, "@SafeNameEvent", DbType.String, entity.SafeNameEvent);
            database.AddInParameter(commandWrapper, "@Schema", DbType.String, entity.Schema);
            database.AddInParameter(commandWrapper, "@SafeNameObject", DbType.String, entity.SafeNameObject);
            database.AddInParameter(commandWrapper, "@Tsql", DbType.String, entity.Tsql);
            database.AddInParameter(commandWrapper, "@XmlEvent", DbType.Xml, entity.XmlEvent);

            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));
        }
Exemplo n.º 5
0
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.DatabaseLog object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.DatabaseLog object to insert.</param>
        /// <remarks>
        ///		After inserting into the datasource, the Nettiers.AdventureWorks.Entities.DatabaseLog 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.DatabaseLog entity)
        {
            SqlDatabase database       = new SqlDatabase(this._connectionString);
            DbCommand   commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.usp_adwTiers_DatabaseLog_Insert", _useStoredProcedure);

            database.AddOutParameter(commandWrapper, "@DatabaseLogId", DbType.Int32, 4);
            database.AddInParameter(commandWrapper, "@PostTime", DbType.DateTime, entity.PostTime);
            database.AddInParameter(commandWrapper, "@DatabaseUser", DbType.String, entity.DatabaseUser);
            database.AddInParameter(commandWrapper, "@SafeNameEvent", DbType.String, entity.SafeNameEvent);
            database.AddInParameter(commandWrapper, "@Schema", DbType.String, entity.Schema);
            database.AddInParameter(commandWrapper, "@SafeNameObject", DbType.String, entity.SafeNameObject);
            database.AddInParameter(commandWrapper, "@Tsql", DbType.String, entity.Tsql);
            database.AddInParameter(commandWrapper, "@XmlEvent", DbType.Xml, entity.XmlEvent);

            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 _databaseLogId = database.GetParameterValue(commandWrapper, "@DatabaseLogId");

            entity.DatabaseLogId = (System.Int32)_databaseLogId;


            entity.AcceptChanges();

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

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

            try
            {
                WsProxy.DatabaseLog result = proxy.DatabaseLogProvider_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;
            }
        }
Exemplo n.º 7
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.DatabaseLog Convert(WsProxy.DatabaseLog item)
 {
     Nettiers.AdventureWorks.Entities.DatabaseLog outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.DatabaseLog();
     Convert(outItem, item);
     return(outItem);
 }
Exemplo n.º 8
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(DatabaseLog mock)
        {
            //Code your changes to the data object here.
        }
Exemplo n.º 9
0
        ///<summary>
        ///  Update the Typed DatabaseLog Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, DatabaseLog mock)
        {
            DatabaseLogTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }
Exemplo n.º 10
0
		///<summary>
		///  Update the Typed DatabaseLog Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, DatabaseLog mock)
		{
			mock.PostTime = TestUtility.Instance.RandomDateTime();
			mock.DatabaseUser = TestUtility.Instance.RandomString(63, false);;
			mock.SafeNameEvent = TestUtility.Instance.RandomString(63, false);;
			mock.Schema = TestUtility.Instance.RandomString(63, false);;
			mock.SafeNameObject = TestUtility.Instance.RandomString(63, false);;
			mock.Tsql = TestUtility.Instance.RandomString(2, false);;
			mock.XmlEvent = "<test></test>";
			
		}
Exemplo n.º 11
0
		///<summary>
		///  Returns a Typed DatabaseLog Entity with mock values.
		///</summary>
		static public DatabaseLog CreateMockInstance_Generated(TransactionManager tm)
		{		
			DatabaseLog mock = new DatabaseLog();
						
			mock.PostTime = TestUtility.Instance.RandomDateTime();
			mock.DatabaseUser = TestUtility.Instance.RandomString(63, false);;
			mock.SafeNameEvent = TestUtility.Instance.RandomString(63, false);;
			mock.Schema = TestUtility.Instance.RandomString(63, false);;
			mock.SafeNameObject = TestUtility.Instance.RandomString(63, false);;
			mock.Tsql = TestUtility.Instance.RandomString(2, false);;
			mock.XmlEvent = "<test></test>";
			
		
			// create a temporary collection and add the item to it
			TList<DatabaseLog> tempMockCollection = new TList<DatabaseLog>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (DatabaseLog)mock;
		}
Exemplo n.º 12
0
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				DatabaseLog entity = mock.Copy() as DatabaseLog;
				entity = (DatabaseLog)mock.Clone();
				Assert.IsTrue(DatabaseLog.ValueEquals(entity, mock), "Clone is not working");
			}
		}
Exemplo n.º 13
0
		/// <summary>
		/// Serialize a DatabaseLog 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_DatabaseLogCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<DatabaseLog> mockCollection = new TList<DatabaseLog>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<DatabaseLog> correctly serialized to a temporary file.");					
			}
		}
Exemplo n.º 14
0
		/// <summary>
		/// Serialize the mock DatabaseLog 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_DatabaseLog.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.");			
			}
		}
Exemplo n.º 15
0
		/// <summary>
		/// Deep load all DatabaseLog children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.DatabaseLogProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.DatabaseLogProvider.DeepLoading += new EntityProviderBaseCore<DatabaseLog, DatabaseLogKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.DatabaseLogProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("DatabaseLog instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.DatabaseLogProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}