Click here to Skip to main content
Licence 
First Posted 8 Jan 2007
Views 63,820
Bookmarked 51 times

Code Generator using CodeSmith Api

By | 8 Jan 2007 | Article
This tool generate the c# code using the code smith templates and API
 
Part of The SQL Zone sponsored by
See Also

Sample Image - Code_Generator.jpg

Introduction

Before I start to explain what my code generator is and how it works, I want to let you people what thing have hit me to write this article and my code generator.

Well as all programmer knows that writing code for DAL and BL is time consuming and we write same lines of code for each project excepts some custom changing, so I was wondering by we take such burden every time there should some other fast, easiest , efficient way, so I started to explorer it and started working on that, as I progress I find CodeSmith (www.codesmithtools.com) as a useful tool to achieve that.

CodeSmith enables software developers to efficiently:

  • Reduce repetitive coding
  • Generate your code in less time with fewer bugs
  • Produce consistent code that adheres to your standards
  • Create your own custom templates for any language

So I started to learn the codesmith, and luckly due to its easy structure I grasp its concept , working quickly.

Now I should explain the working of my software. First of I started to work on writing templates for myself. I stated building my own frame work, As I am beginner so started to understand the .netTiers Application Framework (http://www.nettiers.com). After under standing this framework I started to build my framework and get some help from the .netTiers Application Framework.

My framework consist of the following classes

  • Entity Class
  • Entity Base Class
  • EntityController Class
  • EntityController Base Cclass
  • DataProvider Class
  • DataProvider Base Class
  • GenericList Class
  • CBO Class

Entity Class:

This class is inherited from the base class Entity Base Class, the entity class contain no function but you can override the virtual function in the base class, and if you want some custom function then you can write your own function in the entity class no in the base class.

Entity Base Class;

This class have the properties , methods to that should be required for the database table. Its an abstract class. This class have the following functions other then the constructor

  • Equals
  • GetHashCode

EntityController Class:

This class is inherited from the base class EntityController Base Class, this class can also override the virtual functions from the base class.

EntityController Base Class:

This class have the basic methods as follows

  • Add(with four overloaded methods
  • Update(with four overloaded methods)
  • Delete(with four overloaded methods)
  • GetPagedData(for getting data in the form of page)
  • DeleteAll
  • Get
  • GetAll
  • GetCustomView(to get the custom data base table columns
  • GetByPk
  • CountAll
  • GetByFk

This class call the function of the DataProvider class to interact with the database.

DataProvider Class:

This class is inherited from the base class DataProvider Base Class, this class can also override the virtual functions from the base class.

DataProvider Base Class:

This class actually interact with the database. For this purpose I uses the Microsoft Enterprise Library 2006. which provide efficient data access libraries. You can download the enterprise library from the Microsoft site (www.microsoft.com).

GenericList Class:

In my framework for getting data in bundle I uses generic list instead of the datasets, for this I write the generic class.

CBO Class:

For converting the object to the required class or entity object I use this class.

CodeGenerator:

I wrote CodeSmith templates for above mentions class, other then these to class I wrote an other template which was use to generate the store procedure which will be use by the methods in the DataProvider Base Class.

Now come to point why I write the application for compiling the CodeSmith templates that I have written, the problem was that to generate the code for the some database we have to compile each template for each table. So it take some time and also some hectic, so I develop the application to perform this work, I generate the code using all these templates by just info about the database. I develop this tool which uses CodeSmith API to compile the templates. Please install the CodeSmith 3.2 on your system to generate the code

There was another class for the CodeSmith templates which was code behind class SqlScript.cs; I adopted this class from the .netTiers Application Framework (http://www.nettiers.com). And have some custom function to be used in my framework.

Please let me know about your suggestions and comments thanks, and I am working on to version capability like dot net 2003 and dot net 2005. And also to compile the other templates also not specific related to my frame work

Name: Muhammad Shafqat Masood

Software Engineer (Nextbridge)

Contact: Napster_ghb@yahoo.com

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

About the Author

napster_ghb

Web Developer

Pakistan Pakistan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalmy vote of 5 Pinmemberwaqas31620:16 11 Nov '10  
QuestionI have not license? Pinmemberbillgate_qn19:13 1 Apr '10  
QuestionDoes it work with MySQL? PinmemberKoiralaKiran6:24 7 Apr '09  
GeneralNot able work with newer Codesmith Pinmembernikhil_ksa10:07 1 Aug '08  
GeneralRe: Not able work with newer Codesmith Pinmembershafqatm19:49 3 Sep '08  
General3q PinmemberXuShiHao22:12 25 Mar '08  
Generalcould u please give me a code to add webreference dynamically to c# dll PinmemberAvdooth19:11 15 Oct '07  
GeneralCould you give a sample business logic class code Pinmembersarzzaidi1:16 9 Oct '07  
Could you give a sample business logic class code so we understand , how we use classes generated by these templates.
 
ali raza
software engnieer
obisoft pvt lahore
Generalits unable to load database name PinmemberMCSDvikasmisra10:16 27 Jun '07  
GeneralRe: its unable to load database name PinmemberChoice4Me3:24 17 Dec '07  
GeneralAdvantages of SmartCode PinmemberDanilo Mendez14:40 26 May '07  
GeneralAnother Option!! PinmemberIqbal M Khan20:45 15 Feb '07  
QuestionWhat's the benefit? PinmemberChris Carter16:19 9 Jan '07  
AnswerRe: What's the benefit? Pinmembershafqatmasood20:29 9 Jan '07  
GeneralRe: What's the benefit? PinmemberEric J. Smith7:44 17 Sep '07  
QuestionWhere is the source code for your codeGenerator? Pinmemberdevnet24723:10 8 Jan '07  
AnswerRe: Where is the source code for your codeGenerator? Pinmembershafqatmasood20:31 9 Jan '07  
GeneralRe: Where is the source code for your codeGenerator? PinmemberMember 15407932:50 1 May '08  
GeneralRe: Where is the source code for your codeGenerator? Pinmembermcheschm8:28 24 Sep '08  
GeneralRe: Where is the source code for your codeGenerator? Pinmembershafqatm19:49 12 Nov '08  
Generalcode generator PinmemberTanvir Ahmed19:57 8 Jan '07  
GeneralCode Generator Requirements Pinmembershafqatmasood19:45 8 Jan '07  
GeneralSource Link is working Now Pinmembershafqatmasood19:23 8 Jan '07  
GeneralComment Plz Pinmembershafqatmasood19:13 8 Jan '07  
GeneralRe: Comment Plz PinmemberMuhammad Farhat Malik19:53 8 Jan '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 8 Jan 2007
Article Copyright 2007 by napster_ghb
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid