ADO Net C# Tutorial

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using System.Data.OleDb;
using System.Data.Common;
public class DataTableMappingDemo : System.Windows.Forms.Form
{
  private System.Windows.Forms.DataGrid dataGrid1;
  private System.ComponentModel.Container components = null;
  public DataTableMappingDemo()
  {
    InitializeComponent();
  }
  protected override void Dispose( bool disposing )
  {
    if( disposing )
    {
      if (components != null) 
      {
        components.Dispose();
      }
    }
    base.Dispose( disposing );
  }
  private void InitializeComponent()
  {
    this.dataGrid1 = new System.Windows.Forms.DataGrid();
    ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
    this.SuspendLayout();
    // 
    // dataGrid1
    // 
    this.dataGrid1.DataMember = "";
    this.dataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText;
    this.dataGrid1.Location = new System.Drawing.Point(8, 16);
    this.dataGrid1.Name = "dataGrid1";
    this.dataGrid1.Size = new System.Drawing.Size(432, 248);
    this.dataGrid1.TabIndex = 0;
    // 
    // DataTableMapping
    // 
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.ClientSize = new System.Drawing.Size(448, 273);
    this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                    this.dataGrid1});
    this.Name = "DataTableMapping";
    this.Text = "DataTableMapping";
    this.Load += new System.EventHandler(this.DataTableMapping_Load);
    ((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).EndInit();
    this.ResumeLayout(false);
  }
  [STAThread]
  static void Main() 
  {
    Application.Run(new DataTableMappingDemo());
  }
  private void DataTableMapping_Load(object sender, System.EventArgs e)
  {
        string ConnectionString ="server=(local)\\SQLEXPRESS;database=MyDatabase;Integrated Security=SSPI;";
        SqlConnection conn = new SqlConnection(ConnectionString);
        conn.Open();
        DataTableMapping myMapping = new DataTableMapping("Employee", "mapEmployee");
        SqlDataAdapter adapter = new SqlDataAdapter("Select * From Employee", conn);
        adapter.TableMappings.Add(myMapping);
        DataSet ds = new DataSet();
        adapter.Fill(ds, "mapEmployee");
        dataGrid1.DataSource = ds.DefaultViewManager;
  }
}