Click here to Skip to main content
15,896,359 members
Articles / Programming Languages / C#

ADO.NET for the Object-Oriented Programmer – Part Three

Rate me:
Please Sign up or sign in to vote.
4.71/5 (24 votes)
10 Feb 2006CPOL13 min read 160.1K   1.5K   129  
In this article, we will see how to use ADO.NET to serialize an object model. Once we have finished with serialization, we will look at how to bind our object model to user controls.
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using AdoNetForOopPart3.View;

namespace AdoNetForOopPart3
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new FormMain());
        }
    }
}

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