Click here to Skip to main content
15,891,597 members
Articles / Programming Languages / SQL

NHibernate Made Simple

Rate me:
Please Sign up or sign in to vote.
4.92/5 (207 votes)
31 Oct 2007CPOL44 min read 778.8K   23K   527  
A simple, straightforward tutorial that will get you up to speed on the fundamentals of NHibernate as quickly as possible
using System;
using System.Collections.Generic;
using System.Text;

namespace NHibernateSimpleDemo
{
    /// <summary>
    /// The customer's address.
    /// </summary>
    public class Address
    {
        #region Declarations

    	// Property variables
        private string p_City = String.Empty;
        private string p_State = String.Empty;
        private string p_StreetAddress = String.Empty;
        private string p_Zip = string.Empty;

    	// Member variables
    
    	#endregion

    	#region Constructor

    	#endregion

    	#region Properties

        /// <summary>
        /// The city portion of the customer's address.
        /// </summary>
        public virtual string City
        {
            get { return p_City; }
            set { p_City = value; }
        }

        /// <summary>
        /// The street address portion of the customer's address.
        /// </summary>
        public virtual string StreetAddress
        {
            get { return p_StreetAddress; }
            set { p_StreetAddress = value; }
        }

        /// <summary>
        /// The state portion of the customer's address.
        /// </summary>
        public virtual string State
        {
            get { return p_State;}
            set { p_State = value;}
        }

        /// <summary>
        /// The zip code portion of the customer's address.
        /// </summary>
        public virtual string Zip
        {
            get { return p_Zip; }
            set { p_Zip = value; }
        }

    	#endregion

    	#region Methods

    	#endregion
    }
}

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
Software Developer (Senior) Foresight Systems
United States United States
David Veeneman is a financial planner and software developer. He is the author of "The Fortune in Your Future" (McGraw-Hill 1998). His company, Foresight Systems, develops planning and financial software.

Comments and Discussions