Click here to Skip to main content
15,896,505 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 780.1K   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>
    /// A product from the seller's catalog.
    /// </summary>
    public class Product
    {
    	#region Declarations

    	// Property variables
        private int p_ID = -1;

    	// Member variables
        private string p_Name = String.Empty;
    
    	#endregion

    	#region Constructor

        public Product()
        {
        }

    	#endregion

    	#region Properties

        /// <summary>
        /// The ID of the product.
        /// </summary>
        public virtual int ID
        {
            get { return p_ID; }
            set { p_ID = value; }
        }

        /// <summary>
        /// The name of the product.
        /// </summary>
        public virtual string Name
        {
            get { return p_Name; }
            set { p_Name = value; }
        }

    	#endregion

    	#region Method Overrides

        public override string ToString()
        {
            return p_Name;
        }

    	#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