Click here to Skip to main content
15,886,564 members
Articles / Web Development / ASP.NET

Developing Next Generation Smart Clients using .NET 2.0 working with Existing .NET 1.1 SOA-based XML Web Services

Rate me:
Please Sign up or sign in to vote.
4.96/5 (134 votes)
16 Aug 200540 min read 1.2M   3.9K   462  
Comprehensive guide to development of .NET 2.0 Smart Clients working with existing Service Oriented Architecture based XML web services, fully utilizing the Enterprise Library
	 
#region Using directives

using System;
using System.Data;
using System.Collections;
using System.Diagnostics;
using SmartInstitute;

#endregion

namespace SmartInstitute.DataAccessLayer.Factories
{

///<summary>
/// This class is an helper Repository that exposes CRUD methods for CourseSection objects as static methods.
/// It forward the process to the concrete ICourseSectionRepository that is defined in the configuration file.
///</summary>
public class CourseSectionRepository : ICourseSectionRepository
{
	private static volatile CourseSectionRepository current;
   	private static object syncRoot = new Object();
   	private ICourseSectionRepository repository;
	
	#region "Constructors"
		
	///<summary>
	/// Creates a new <see cref="CourseSectionRepository"/> instance.
	///</summary>
	private CourseSectionRepository()
	{
		this.repository = new DataAccessLayer.SqlClient.CourseSectionRepository(string.Empty);
	}
	
	///<summary>
	/// The current <see href="CourseSectionRepository"/> instance.
	///</summary>
	///<value></value>
	public static CourseSectionRepository Current
	{
	  get 
	  {
	     if (current == null) 
	     {
	        lock (syncRoot) 
	        {
	           if (current == null)
	           {
			   		current = new CourseSectionRepository();
			   }
	        }
	     }
	     return current;
	  }
	}
		
	#endregion "Constructors"
	
	#region Public Properties
	///<summary>
	/// The current ICourseSectionRepository instance, as configured in the DataAccessLayer/ClientType configuration section.
	///</summary>
	private ICourseSectionRepository Repository
	{
		get
		{
			return this.repository;
		}
	} 
	#endregion
	
	#region "Get from  Many To Many Relationship Functions"
	#endregion	
	
	
	#region "Delete Functions"
		
	/// <summary>
	/// 	Deletes rows from the DataSource.
	/// </summary>
	/// <param name="entityCollection">CourseSectionCollection containing data.</param>
	/// <remarks>Deletes CourseSections only when IsDeleted equals true.</remarks>
	/// <returns>Returns the number of successful delete.</returns>
	public int Delete(CourseSectionCollection entityCollection)
	{
		int number = 0;
		foreach (CourseSection entity in entityCollection)
		{
			if( Delete(entity) )
			{
				number++;
			}
		}
		return number;
	}
		
	/// <summary>
	/// 	Deletes a row from the DataSource.
	/// </summary>
	/// <param name="entity">CourseSection object containing data.</param>
	/// <remarks>Deletes based on primary key(s).</remarks>
	/// <returns>Returns true if operation suceeded.</returns>
	public bool Delete(CourseSection entity)
	{
		return Delete(entity.ID, entity.ChangeStamp);	
	}
					
	/// <summary>
	/// 	Deletes a row from the DataSource.
	/// </summary>
	/// <param name="ID">. Primary Key.</param>	
	/// <remarks>Deletes based on primary key(s).</remarks>
	/// <returns>Returns true if operation suceeded.</returns>
	public bool Delete(System.Int32 ID, DateTime ChangeStamp)
	{
		return Repository.Delete(ID, ChangeStamp);
	}//end Delete
	
	
	/// <summary>
	/// Throws the delete concurrency exception.
	/// </summary>
	/// <param name="ID">. Primary Key.</param>	
	protected static void ThrowDeleteConcurrencyException(System.Int32 ID, DateTime ChangeStamp)
	{
		DBConcurrencyException conflict = new DBConcurrencyException("Concurrency exception: Cannot delete entity as it does not exist.");
		//conflict.ModifiedRecord = entity;
		throw conflict;
	}	
	
	#endregion
	
		
	#region "GetList Functions"
	
	/// <summary>
	/// 	Gets All rows from the DataSource.
	/// </summary>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetAll()
	{
		return GetAll(0, int.MaxValue);
	}
	
	/// <summary>
	/// 	Gets All rows from the DataSource.
	/// </summary>
	/// <param name="start">Row number at which to start reading.</param>
	/// <param name="pageLength">Number of rows to return.</param>
	/// <remarks></remarks>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetAll(int start, int pageLength)
	{
		return Repository.GetAll(start, pageLength);
	}
	
	#endregion
	
	#region Paged Recordset
	
	/// <summary>
	/// Gets a page of rows from the DataSource.
	/// </summary>
	/// <param name="start">Row number at which to start reading.</param>
	/// <param name="pageLength">Number of rows to return.</param>
	/// <param name="count">Number of rows in the DataSource.</param>
	/// <remarks></remarks>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetPaged(int start, int pageLength, out int count)
	{
		return Repository.GetPaged(null, null, start, pageLength, out count);
	}
	
	/// <summary>
	/// Gets a page of rows from the DataSource.
	/// </summary>
	/// <param name="start">Row number at which to start reading.</param>
	/// <param name="pageLength">Number of rows to return.</param>
	/// <param name="count">Number of rows in the DataSource.</param>
	/// <param name="whereClause">Specifies the condition for the rows returned by a query (Name='John Doe', Name='John Doe' AND Id='1', Name='John Doe' OR Id='1').</param>
	/// <param name="orderBy">Specifies the sort criteria for the rows in the DataSource (Name ASC; BirthDay DESC, Name ASC);</param>
	/// <remarks></remarks>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetPaged(string whereClause, string orderBy, int start, int pageLength, out int count)
	{
		return Repository.GetPaged(whereClause, orderBy, start, pageLength, out count);
	}
	
	#endregion
		
		
	#region "Get By Foreign Key Functions"

	/// <summary>
	/// 	Gets rows from the datasource based on the FK_CourseSection_Course key.
	///		FK_CourseSection_Course Description: 
	/// </summary>
	/// <param name="CourseID"></param>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetByCourseID(System.Int32 CourseID)
	{
		return GetByCourseID(CourseID, 0,int.MaxValue);
	}
	
	/// <summary>
	/// 	Gets rows from the datasource based on the FK_CourseSection_Course key.
	///		FK_CourseSection_Course Description: 
	/// </summary>
	/// <param name="start">Row number at which to start reading.</param>
	/// <param name="pageLength">Number of rows to return.</param>
	/// <param name="CourseID"></param>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetByCourseID(System.Int32 CourseID, int start, int pageLength)
	{		
		return Repository.GetByCourseID(CourseID, start, pageLength);
	}
	
	#endregion
	
	
	#region "Get By Index Functions"

	
	/// <summary>
	/// 	Gets rows from the datasource based on the PK_Section index.
	/// </summary>
	/// <param name="ID"></param>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetByID(System.Int32 ID)
	{
		return GetByID(ID, 0, int.MaxValue);
	}	
	

	/// <summary>
	/// 	Gets rows from the datasource based on the PK_Section index.
	/// </summary>
	/// <param name="start">Row number at which to start reading.</param>
	/// <param name="pageLength">Number of rows to return.</param>
	/// <param name="ID"></param>
	/// <returns>Returns a typed collection of CourseSection objects.</returns>
	public CourseSectionCollection GetByID(System.Int32 ID, int start, int pageLength)
	{		
		return Repository.GetByID(ID, start, pageLength);
	}	

	#endregion "Get By Index Functions"


	#region "Insert Functions"
		
	/// <summary>
	/// 	Insert rows in the datasource.
	/// </summary>
	/// <param name="entityCollection"><c>CourseSection</c> objects in a <c>CourseSectionCollection</c> object to insert.</param>
	/// <remarks>
	///		This function will only insert entity objects marked as dirty
	///		and have an identity field equal to zero.
	///		Upon inserting the objects, each dirty object will have the public
	///		method <c>Object.AcceptChanges()</c> called to make it clean.
	/// 	After inserting into the datasource, the <c>CourseSection</c> objects will be updated
	/// 	to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns the number of successful insert.</returns>
	public int Insert(CourseSectionCollection entityCollection)
	{
		int number = 0;
		//Extract only dirty objects to save time and bandwidth
		foreach (CourseSection entity in entityCollection)
		{
			if (entity.IsNew)
			{
				if ( Insert(entity) )
				{
					number++;
				}
			}
		}
		return number;
	}

	/// <summary>
	/// 	Inserts a CourseSection object into the datasource using a transaction.
	/// </summary>
	/// <param name="entity">CourseSection object to insert.</param>
	/// <remarks>After inserting into the datasource, the CourseSection object will be updated
	/// to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns true if operation is successful.</returns>
	public bool Insert(CourseSection entity)
	{
		return Repository.Insert(entity);
	}	
	#endregion


	#region "Update Functions"
		
	/// <summary>
	/// 	Update existing rows in the datasource.
	/// </summary>
	/// <param name="entityCollection"><c>CourseSection</c> objects in a <c>CourseSectionCollection</c> object to update.</param>
	/// <remarks>
	///		This function will only update entity objects marked as dirty
	///		and do not have an primary key value of 0.
	///		Upon updating the objects, each dirty object will have the public
	///		method <c>Object.AcceptChanges()</c> called to make it clean.
	/// 	After updating the datasource, the <c>CourseSection</c> objects will be updated
	/// 	to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns the number of successful update.</returns>
	public int Update(CourseSectionCollection entityCollection)
	{	
		int number = 0;
		foreach (CourseSection entity in entityCollection)
		{
			if ((entity.IsDirty) && !(entity.IsNew))
			{
				if ( Update(entity) )
				{
					number++;
				}
			}
		}
		return number;
	}
	
	/// <summary>
	/// 	Update an existing row in the datasource.
	/// </summary>
	/// <param name="entity">CourseSection object to update.</param>
	/// <remarks>After updating the datasource, the CourseSection object will be updated
	/// to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns true if operation is successful.</returns>
	public bool Update(CourseSection entity)
	{
		return Repository.Update(entity);
	}
	#endregion


	#region "Save Functions"
	
	/// <summary>
	/// 	Save rows changes in the datasource (insert, update ,delete).
	/// </summary>
	/// <param name="entity">CourseSection object to update.</param>
	/// <remarks>
	/// 	After updating the datasource, the <c>CourseSection</c> objects will be updated or inserted
	/// 	to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns true if operation is successful.</returns>
	public void Save(CourseSection entity)
	{		
		if (entity.IsDeleted)
			Delete(entity);
			
		else if ((entity.IsDirty) && !(entity.IsNew))
			Update(entity);
			
		else if (entity.IsNew)
			Insert(entity);
	}
		
	/// <summary>
	/// 	Save rows changes in the datasource (insert, update ,delete).
	/// </summary>
	/// <param name="entityCollection"><c>CourseSection</c> objects in a <c>CourseSectionCollection</c> object to save.</param>
	/// <remarks>
	/// 	After updating the datasource, the <c>CourseSection</c> objects will be updated or inserted
	/// 	to refelect any changes made by the datasource. (ie: identity columns)</remarks>
	/// <returns>Returns true if operation is successful.</returns>
	public void Save(CourseSectionCollection entityCollection)
	{
		foreach (CourseSection entity in entityCollection)
		{			
			Save(entity);
		}
	}
	#endregion


	#region "Helper Functions"	
	
	///<summary>
	/// Fill an CourseSectionCollection From a DataSet
	///</summary>
	/// <param name="dataSet">the DataSet</param>
	/// <param name="rows">The collection to fill</param>
	/// <param name="start">Start row</param>
	/// <param name="pageLength">number of row.</param>
	///<returns><see chref="CourseSectionCollection"/></returns>
	protected static CourseSectionCollection Fill(DataSet dataSet, CourseSectionCollection rows, int start, int pageLength)
	{
		int recordnum = 0;
		
		System.Collections.IEnumerator dataRows =  dataSet.Tables[0].Rows.GetEnumerator();
		
		while (dataRows.MoveNext() && (pageLength != 0))
		{
			if(recordnum >= start)
			{
				DataRow row = (DataRow)dataRows.Current;
			
				CourseSection c = new CourseSection();
				c.ID = (Convert.IsDBNull(row["ID"]))?(int)0:(System.Int32)row["ID"];
				c.Title = (Convert.IsDBNull(row["Title"]))?string.Empty:(System.String)row["Title"];
				c.Description = (Convert.IsDBNull(row["Description"]))?string.Empty:(System.String)row["Description"];
				c.Capacity = (Convert.IsDBNull(row["Capacity"]))?(int)0:(System.Int32)row["Capacity"];
				c.CourseID = (Convert.IsDBNull(row["CourseID"]))?(int)0:(System.Int32)row["CourseID"];
				c.ClassID = (Convert.IsDBNull(row["ClassID"]))?string.Empty:(System.String)row["ClassID"];
				c.Status = (Convert.IsDBNull(row["Status"]))?(int)0:(System.Int32)row["Status"];
				c.Type = (Convert.IsDBNull(row["Type"]))?(int)0:(System.Int32)row["Type"];
				c.ChangeStamp = (Convert.IsDBNull(row["ChangeStamp"]))?DateTime.MinValue:(System.DateTime)row["ChangeStamp"];
				c.AcceptChanges();
				rows.Add(c);
				pageLength -= 1;
			}
			recordnum += 1;
		}
		return rows;
	}
			
	
	
	/// <summary>
	/// Refreshes the <see cref="CourseSection"/> object from the <see cref="DataSet"/>.
	/// </summary>
	/// <param name="dataSet">The <see cref="DataSet"/> to read from.</param>
	/// <param name="entity">The <see cref="CourseSection"/> object.</param>
	protected static void RefreshEntity(DataSet dataSet, CourseSection entity)
	{
		DataRow dataRow = dataSet.Tables[0].Rows[0];
		
		entity.ID = (Convert.IsDBNull(dataRow["ID"]))?(int)0:(System.Int32)dataRow["ID"];
		entity.Title = (Convert.IsDBNull(dataRow["Title"]))?string.Empty:(System.String)dataRow["Title"];
		entity.Description = (Convert.IsDBNull(dataRow["Description"]))?string.Empty:(System.String)dataRow["Description"];
		entity.Capacity = (Convert.IsDBNull(dataRow["Capacity"]))?(int)0:(System.Int32)dataRow["Capacity"];
		entity.CourseID = (Convert.IsDBNull(dataRow["CourseID"]))?(int)0:(System.Int32)dataRow["CourseID"];
		entity.ClassID = (Convert.IsDBNull(dataRow["ClassID"]))?string.Empty:(System.String)dataRow["ClassID"];
		entity.Status = (Convert.IsDBNull(dataRow["Status"]))?(int)0:(System.Int32)dataRow["Status"];
		entity.Type = (Convert.IsDBNull(dataRow["Type"]))?(int)0:(System.Int32)dataRow["Type"];
		entity.ChangeStamp = (Convert.IsDBNull(dataRow["ChangeStamp"]))?DateTime.MinValue:(System.DateTime)dataRow["ChangeStamp"];
		entity.AcceptChanges();
	}
		
	#region DeepLoad
	#region Deep Load By Entity
	/// <summary>
	/// Deep Load the IEntity object with all of the child 
	/// property collections only 1 Level Deep.
	/// </summary>
	/// <remarks>
	/// <seealso cref="DeepLoad"/> overloaded methods for a recursive N Level deep loading method.
	/// </remarks>
	/// <param name="entity">CourseSection Object</param>
	public void DeepLoad(CourseSection entity)
	{
	 	DeepLoad(entity, false, DeepLoadType.ExcludeChildren, new Type[] {});
	}
	
	/// <summary>
	/// Deep Load the IEntity object with all of the child 
	/// property collections only 1 Level Deep.
	/// </summary>
	/// <remarks>
	/// <seealso cref="DeepLoad"/> overloaded methods for a recursive N Level deep loading method.
	/// </remarks>
	/// <param name="entity">CourseSection Object</param>
	/// <param name="deep">Boolean. A flag that indicates whether to recursively save all Property Collection that are descendants of this instance. If True, saves the complete object graph below this object. If False, saves this object only. </param>
	public void DeepLoad(CourseSection entity, bool deep)
	{
	 	DeepLoad(entity, deep, DeepLoadType.ExcludeChildren, new Type[] {});
	}
	
	/// <summary>
	/// Deep Loads the <see cref="IEntity"/> object with criteria based of the child 
	/// property collections only N Levels Deep based on the <see cref="DeepLoadType"/>.
	/// </summary>
	/// <remarks>
	/// Use this method with caution as it is possible to DeepLoad with Recursion and traverse an entire object graph.
	/// </remarks>
	/// <param name="entity">The <see cref="CourseSection"/> object to load.</param>
	/// <param name="deep">Boolean. A flag that indicates whether to recursively save all Property Collection that are descendants of this instance. If True, saves the complete object graph below this object. If False, saves this object only. </param>
	/// <param name="deepLoadType">DeepLoadType Enumeration to Include/Exclude object property collections from Load.</param>
	/// <param name="childTypes">CourseSection Property Collection Type Array To Include or Exclude from Load</param>
	public void DeepLoad(CourseSection entity, bool deep, DeepLoadType deepLoadType, System.Type[] childTypes)
	{
		#region Argument Validation
		//Argument checks
		if (entity ==  null)
		{
			throw new ArgumentNullException("The argument CourseSection, can not be null.");
		}
		if (!Enum.IsDefined(typeof(DeepLoadType), deepLoadType))
		{
			throw new ArgumentNullException("A valid DeepLoadType option is not present.");
		}
		if (childTypes == null)
		{
			throw new ArgumentNullException("A valid Type[] array is not present.");
		}
		#endregion
		
		//In case an event can trigger the disabling of the deep load
		if (deepLoadType == DeepLoadType.Ignore)
		{
			return;
		}
		
		//Create a HashTable list of types for easy access
		Hashtable innerList = new Hashtable(childTypes.Length);
		for(int i=0; i < childTypes.Length; i++)
		{
			innerList.Add(childTypes[i], childTypes[i].ToString()); 
		}
		
		Debug.Indent();
		Debug.WriteLine("DeepLoad object 'CourseSection'");
		Debug.Indent();
		
		// Load Entity through Provider
			//deep load child collections  - Call GetByID methods when available
		if ((deepLoadType == DeepLoadType.IncludeChildren && innerList[typeof(CourseTakenByStudentCollection)] != null)
			|| (deepLoadType == DeepLoadType.ExcludeChildren && innerList[typeof(CourseTakenByStudentCollection)] == null))
		{
			Debug.WriteLine("- property 'CourseTakenByStudentCollection' loaded.");
			entity.CourseTakenByStudentCollection = CourseTakenByStudentRepository.Current.GetBySectionID(entity.ID);
			if (deep)
			{
				CourseTakenByStudentRepository.Current.DeepLoad(entity.CourseTakenByStudentCollection, deep, deepLoadType, childTypes);
			}
		}		
		if ((deepLoadType == DeepLoadType.IncludeChildren && innerList[typeof(SectionRoutineCollection)] != null)
			|| (deepLoadType == DeepLoadType.ExcludeChildren && innerList[typeof(SectionRoutineCollection)] == null))
		{
			Debug.WriteLine("- property 'SectionRoutineCollection' loaded.");
			entity.SectionRoutineCollection = SectionRoutineRepository.Current.GetBySectionID(entity.ID);
			if (deep)
			{
				SectionRoutineRepository.Current.DeepLoad(entity.SectionRoutineCollection, deep, deepLoadType, childTypes);
			}
		}		
		Debug.Unindent();
		Debug.Unindent();
		Debug.WriteLine("");
		return;
	}
	
	#endregion
	
	#region Deep Load By Entity Collection
	/// <summary>
	/// Deep Loads the <see cref="CourseSectionCollection"/> object with all of the child 
	/// property collections only 1 Level Deep.
	/// </summary>
	/// <remarks>
	/// <seealso cref="DeepLoad"/> overloaded methods for a recursive N Level deep loading method.
	/// </remarks>
	/// <param name="entityCollection">the <see cref="CourseSectionCollection"/> Object to deep loads.</param>
	public void DeepLoad(CourseSectionCollection entityCollection)
	{
		 DeepLoad(entityCollection, false, DeepLoadType.ExcludeChildren, new Type[] {});
	}
	
	/// <summary>
	/// Deep Loads the <see cref="CourseSectionCollection"/> object.
	/// </summary>
	/// <remarks>
	/// <seealso cref="DeepLoad"/> overloaded methods for a recursive N Level deep loading method.
	/// </remarks>
	/// <param name="entityCollection">the <see cref="CourseSectionCollection"/> Object to deep loads.</param>
	/// <param name="deep">Boolean. A flag that indicates whether to recursively save all Property Collection that are descendants of this instance. If True, saves the complete object graph below this object. If False, saves this object only. </param>
	public void DeepLoad(CourseSectionCollection entityCollection, bool deep)
	{
		 DeepLoad(entityCollection, deep, DeepLoadType.ExcludeChildren, new Type[] {});
	}	

	/// <summary>
	/// Deep Loads the entire <see cref="CourseSectionCollection"/> object with criteria based of the child 
	/// property collections only N Levels Deep based on the DeepLoadType.
	/// </summary>
	/// <remarks>
	/// Use this method with caution as it is possible to DeepLoad with Recursion and traverse an entire collection's object graph.
	/// </remarks>
	/// <param name="entityCollection">The <see cref="CourseSectionCollection"/> instance to load.</param>
	/// <param name="deep">Boolean. A flag that indicates whether to recursively save all Property Collection that are descendants of this instance. If True, saves the complete object graph below this object. If False, saves this object only. </param>
	/// <param name="deepLoadType"><see cref="DeepLoadType"/> Enumeration to Include/Exclude object property collections from Load.
	///		Use DeepLoadType.[IncludeChildren/ExcludeChildren]WithRecursion to traverse the entire object graph.
	///	</param>
	/// <param name="childTypes"><see cref="CourseSection"/> Property Collection Type Array To Include or Exclude from Load</param>
	public void DeepLoad(CourseSectionCollection entityCollection, bool deep, DeepLoadType deepLoadType, System.Type[] childTypes)
	{
		#region Argument Validation
		//Argument checks
		if (entityCollection ==  null)
		{
			throw new ArgumentNullException("A valid non-null, CourseSectionCollection object is not present.");
		}
		if (!Enum.IsDefined(typeof(DeepLoadType), deepLoadType))
		{
			throw new ArgumentNullException("A valid DeepLoadType option is not present.");
		}
		if (childTypes == null)
		{
			throw new ArgumentNullException("A valid Type[] array is not present.");
		}
		#endregion
				
		//In case an event can trigger the disabling of the deepload
		if (deepLoadType == DeepLoadType.Ignore)
		{
			return;
		}
		
		foreach (CourseSection entity in entityCollection)
		{
			DeepLoad(entity, deep, deepLoadType, childTypes);
		}		
		return;
	}
	#endregion
	#endregion 
	
	#region DeepSave
	
	#region Deep Save By Entity
	
	/// <summary>
	/// Deep Save the <see cref="CourseSection"/> object with all of the child
	/// property collections N Levels Deep.
	/// </summary>
	/// <param name="entity">CourseSection Object</param>
	public bool DeepSave(CourseSection entity)
	{
		return DeepSave(entity, DeepSaveType.ExcludeChildren, new Type[] {} );
	}
				
	/// <summary>
	/// Deep Save the entire object graph of the CourseSection object with criteria based of the child 
	/// Type property array and DeepSaveType.
	/// </summary>
	/// <param name="entity">CourseSection Object</param>
	/// <param name="deepSaveType">DeepSaveType Enumeration to Include/Exclude object property collections from Save.
	///	</param>
	/// <param name="childTypes">CourseSection Property Collection Type Array To Include or Exclude from Save</param>
	public bool DeepSave(CourseSection entity, DeepSaveType deepSaveType, System.Type[] childTypes)
	{
		#region Argument Validation
		//Argument checks
		if (entity ==  null)
		{
			throw new ArgumentNullException("The argument CourseSection, can not be null.");
		}
		if (!Enum.IsDefined(typeof(DeepSaveType), deepSaveType))
		{
			throw new ArgumentNullException("A valid DeepSaveType option is not present.");
		}
		if (childTypes == null)
		{
			throw new ArgumentNullException("A valid Type[] array is not present.");
		}
		#endregion
		
		//In case an event can trigger the disabling of the deepsave
		if (deepSaveType == DeepSaveType.Ignore)
		{
			return true;
		}
		
		//Create a HashTable list of types for easy access
		Hashtable innerList = new Hashtable(childTypes.Length);
		for(int i=0; i < childTypes.Length; i++)
		{
			innerList.Add(childTypes[i], childTypes[i].ToString()); 
		}

		// Save Root Entity through Provider
		CourseSectionRepository rep = new CourseSectionRepository();
		rep.Save(entity);
		//deep save child collections  - Call DeepSave() Methods on Children

		if ((deepSaveType == DeepSaveType.IncludeChildren && innerList[typeof(CourseTakenByStudentCollection)] != null)
			|| (deepSaveType == DeepSaveType.ExcludeChildren && innerList[typeof(CourseTakenByStudentCollection)] == null))
		{
			CourseTakenByStudentRepository.Current.DeepSave(entity.CourseTakenByStudentCollection);
		} 

		if ((deepSaveType == DeepSaveType.IncludeChildren && innerList[typeof(SectionRoutineCollection)] != null)
			|| (deepSaveType == DeepSaveType.ExcludeChildren && innerList[typeof(SectionRoutineCollection)] == null))
		{
			SectionRoutineRepository.Current.DeepSave(entity.SectionRoutineCollection);
		} 
		
		return true;
	}
	#endregion
	
	#region Deep Save By Entity Collection
	/// <summary>
	/// Deep Save the entire CourseSectionCollection object with all of the child 
	/// property collections.
	/// </summary>
	/// <param name="entityCollection">CourseSectionCollection Object</param>
	public bool DeepSave(CourseSectionCollection entityCollection)
	{
		return DeepSave(entityCollection, DeepSaveType.ExcludeChildren, new Type[] {});
	}
	
	
	/// <summary>
	/// Deep Save the entire object graph of the CourseSectionCollection object with criteria based of the child 
	/// property collections.
	/// </summary>
	/// <param name="entityCollection">CourseSectionCollection Object</param>
	/// <param name="deepSaveType">DeepSaveType Enumeration to Include/Exclude object property collections from Save.</param>
	/// <param name="childTypes">CourseSection Property Collection Type Array To Include or Exclude from Save</param>
	public bool DeepSave(CourseSectionCollection entityCollection, DeepSaveType deepSaveType, System.Type[] childTypes)
	{
		#region Argument Validation
		//Argument checks
		if (entityCollection ==  null)
		{
			throw new ArgumentNullException("A valid non-null, CourseSectionCollection object is not present.");
		}
		if (!Enum.IsDefined(typeof(DeepSaveType), deepSaveType))
		{
			throw new ArgumentNullException("A valid DeepSaveType option is not present.");
		}
		if (childTypes == null)
		{
			throw new ArgumentNullException("A valid Type[] array is not present.");
		}
		#endregion
				
		//In case an event can trigger the disabling of the deepsave
		if (deepSaveType == DeepSaveType.Ignore)
		{
			return true;
		}
		
		bool deepSaveResult = true;
		bool result;
		
		foreach (CourseSection entity in entityCollection)
		{
			result = DeepSave(entity, deepSaveType, childTypes);
			if (!result){
				 deepSaveResult = false;
			}
		}
		
		return deepSaveResult;
	}
	#endregion
	
	#endregion
		
	#endregion "Helper Functions"
	
}//end class
} // end namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom

Comments and Discussions