Click here to Skip to main content
Click here to Skip to main content

From Tables to Business Objects

By , 24 Nov 2003
 

Introduction

Sometimes you need to automate the repetitive task of generating business objects from table schema. This article uses a free tool called CodeSmith to generate domain entity classes (a.k.a. business objects) for ObjectSpaces from your pre-existing database tables.

Background

ObjectSpaces is a persistence framework that will be available with .NET 2.0. A preview version was distributed at the PDC conference in October 2003. You can also obtain ObjectSpaces if you have a MSDN subscription.

A persistence layer, like ObjectSpaces, can simplify your life by dynamically (at runtime) generating the SQL statements that move data between memory and relational tables. That means that you do not write data access code for your business objects. Instead, you create a mapping file that maps the business classes and their properties to relational data tables and columns.

However, at the time I am writing this article, some necessary tools do not yet exist, hence the motivation for this article. One of the time consuming tasks when working with ObjectSpaces is generating the public properties that wrap the private fields. Besides being good object-oriented programming practice, using a public property to wrap a private field is a requirement for data binding to an ObjectSet. Therefore, as a policy, I always create my domain classes in this manner.

Using CodeSmith to generate ObjectSpaces entities

First, download the free CodeSmith code generation tool from the CodeSmith site. Run the msi to install it. CodeSmith installs into your Programs menu.

Next, if you are using Microsoft ObjectSpaces, you will want to download the templates that go along with this article. I have templates for generating both C# and VB.NET business classes for ObjectSpaces. Extract the two CodeSmith template files into the correct directory where CodeSmith lives. On my machine it goes into c:\Program Files\CodeSmith\Samples\.

Using CodeSmith is simplicity itself. Run the CodeSmith Explorer from your Programs menu.

CodeSmith Explorer

You can edit the template right from the Explorer by right-clicking on the .cst file and selecting edit. Execute the template/script by double-clicking it. Click the ellipse (...) next to Source Table to bring up the Table Picker. If it gives you an error, then click the ellipse after Data Source to edit the connection string to point to your database. Once you have a table selected, click the Generate button and Whala!, the source code for your business object appears in the Template Output window. Copy and paste this code into your Visual Studio source file. That's it!

Generated Business Object

Points of Interest

Eventually, the ObjectSpaces team will create integrated Visual Studio Add-ins. In the meantime, tools like CodeSmith will make your life easier.

History

Initial version - 11/21/2003

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

David Foderick
Web Developer
United States United States
Member
David Foderick is the owner of Net Knowledge, Inc in Southern California, focusing on Object-oriented Analysis and Design, Databases, and layered applications. He is a frequent presenter at local user groups and trainer with certifications in .NET (MCSD), SQL Server(MCDBA), UML and MSF. David received his BSEE from the University of Minnesota.

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionView version?memberrspiewak17 Jun '04 - 7:27 
AnswerRe: View version?memberDavid Foderick22 Jun '04 - 5:28 
GeneralObjectSpaces Samples for VS2005 CTPmemberDavid Foderick9 May '04 - 10:00 
GeneralRe: OK intro to CodeSmith, butmemberOskar Austegard1 Mar '04 - 3:48 
Generaltoo weak for practical usememberjavadeveloper5 Dec '03 - 9:35 
GeneralRe: too weak for practical usememberDavid Foderick5 Dec '03 - 12:29 

javadeveloper wrote:
How can you create relations?
 
You change it manually to Ilist or whatever your implementation of a collection is. If my utility did that (plus a lot more), it wouldn't be free! I would be charging hundreds of dollars for it!
 
javadeveloper wrote:
In the future we will go more to declarative than object oriented programming.
OR is the past )

 
Object-relational mapping is declarative programming. Your example for boolean exactly illustrates the benefit of ORM. Boolean is a type in the language and it is mapped to a sql bit type. If you implemented it for Oracle you would adjust the mapper, the generated code would not change.

 
~Dave Foderick
Net Knowledge
GeneralLooks good, but ...memberMartin Robins2 Dec '03 - 11:20 
GeneralRe: Looks good, but ...memberDavid Foderick2 Dec '03 - 13:03 
GeneralRe: Looks good, but ...sussT. K. Sarma21 Apr '04 - 5:11 
GeneralRe: Looks good, but ...memberDavid Foderick21 Apr '04 - 5:34 
GeneralOK intro to CodeSmith, butmemberOskar Austegard2 Dec '03 - 3:46 
GeneralRe: OK intro to CodeSmith, butmemberDavid Foderick2 Dec '03 - 8:10 
GeneralRe: OK intro to CodeSmith, butmemberOskar Austegard2 Dec '03 - 9:14 
GeneralRe: OK intro to CodeSmith, butmemberDavid Foderick29 Feb '04 - 18:06 
GeneralSqlServicemembercarlcbcinc27 Nov '03 - 4:23 
GeneralRe: SqlServicememberDavid Foderick27 Nov '03 - 7:11 
GeneralRe: SqlServicemembercarlcbcinc27 Nov '03 - 9:14 
GeneralRe: SqlServicememberEric J. Smith27 Nov '03 - 18:17 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 25 Nov 2003
Article Copyright 2003 by David Foderick
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid