Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C#
Tip/Trick

Entity Framework Code First: Mapping to Existing Table in the Database

Rate me:
Please Sign up or sign in to vote.
4.79/5 (15 votes)
30 Sep 2013CPOL 97.9K   20   4
This tip is about how to connect with existing table in the database.

Introduction

This tip is about how to connect with an existing table in the database.

Background

For learning Code First, you can refer to the following:

Using the Code

The database name is MyClass and it consists of only one table "ClassAll".

Below is ClassAll class with the same attributes and properties as of the table .

C#
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;

namespace School.Data.Model
{
    public partial class ClassAll
    {
          
        public int SchoolRollNo { get; set; }
        public int Standard { get; set; }
        public int ClassRollNo { get; set; }
        public string Name { get; set; }
        public string Gender { get; set; }
        public int Percentage { get; set; }
        public System.DateTime Date { get; set; }
    }
}

The class ClassAllMap is used to map with the existing table in the database.

C#
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.ModelConfiguration;

namespace School.Data.Model.Mapping
{
    public class ClassAllMap : EntityTypeConfiguration<ClassAll>
    {
        public ClassAllMap()
        {
            // Primary Key
            this.HasKey(t => t.SchoolRollNo);

            // Properties
            this.Property(t => t.SchoolRollNo)
                .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);

            this.Property(t => t.Name)
                .IsRequired()
                .HasMaxLength(50);

            this.Property(t => t.Gender)
                .IsRequired()
                .IsFixedLength()
                .HasMaxLength(10);

            // Table & Column Mappings
            this.ToTable("ClassAll");
            this.Property(t => t.SchoolRollNo).HasColumnName("SchoolRollNo");
            this.Property(t => t.Standard).HasColumnName("Standard");
            this.Property(t => t.ClassRollNo).HasColumnName("ClassRollNo");
            this.Property(t => t.Name).HasColumnName("Name");
            this.Property(t => t.Gender).HasColumnName("Gender");
            this.Property(t => t.Percentage).HasColumnName("Percentage");
            this.Property(t => t.Date).HasColumnName("Date");
        }
    }
}

MyClassContext is the reference to the "MySchool" database. In this code, we are using the ClassAllMap declared above for configuration.

C#
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using School.Data.Model.Mapping;

namespace School.Data.Model
{
    public partial class MyClassContext : DbContext
    {
        static MyClassContext()
        {
            Database.SetInitializer<MyClassContext>(null);
        }

        public MyClassContext()
            : base("Name=MyClassContext")
        {
        }

        public DbSet<ClassAll> ClassAlls { get; set; }

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            modelBuilder.Configurations.Add(new ClassAllMap()); 
        }
    }
}

If using SQL Server Express Edition, in web.config file, add the connection string as follows:

XML
<connectionStrings> 
    <add name="MyClassContext" providerName="System.Data.SqlClient" 
       connectionString="Server=.\SQLEXPRESS;Database=MyClass;Trusted_Connection=true;" />
</connectionStrings>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Junior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Assil10-Nov-15 10:52
professionalAssil10-Nov-15 10:52 
Questionhow about EF code first migration Pin
Mahdi Ghafoorian27-Apr-14 4:58
Mahdi Ghafoorian27-Apr-14 4:58 
GeneralMy vote of 1 Pin
zeewon23-Mar-14 1:56
zeewon23-Mar-14 1:56 
GeneralMy vote of 1 Pin
EsseyG5-Feb-14 1:11
professionalEsseyG5-Feb-14 1:11 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.