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

Experimenting Custom Build Providers

Rate me:
Please Sign up or sign in to vote.
4.69/5 (18 votes)
1 May 2006CPOL4 min read 53.2K   323   64  
A simple OR Mapper built with custom build providers, which reads data from XML files.
using System;
using System.Collections.Generic;
using System.Text;

namespace ObjectMapper
{
	abstract class StoredProceduresGenerator
	{
		private ClassMapper cls;
	
		public StoredProceduresGenerator(ClassMapper c)
		{
			if (c == null)
				throw new ArgumentNullException("c");

			cls = c;
		}

		public ClassMapper ClassMapper
		{
			get { return cls; }
		}

		public virtual string GetDropObjectCode(string objectName)
		{
			return null;
		}

		public abstract string CreateDeleteStoredProcedure();
		public abstract string CreateInsertStoredProcedure();
		public abstract string CreateUpdateStoredProcedure();
		public abstract string CreateSelectStoredProcedure();
		public abstract string CreateSelectAllStoredProcedure();

		public string GetStoredProceduresDefinitions()
		{
			return CreateInsertStoredProcedure() + CreateUpdateStoredProcedure()
					+ CreateSelectStoredProcedure() + CreateSelectAllStoredProcedure() + CreateDeleteStoredProcedure();
		}
	}
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions