Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#
Article

EF Code First: Add a Foreign Key relationship

Rate me:
Please Sign up or sign in to vote.
4.79/5 (17 votes)
24 Jan 2012CPOL3 min read 245.4K   25   9
Shows how to add foreign key constraints using Entity Framework Code First.

Introduction

We saw in the first article EF Code First: Let's try it, how to generate a table using EF Code First. In this article, we are going to see how to define a foreign key constraint.

Using the code

We want to add a new table to work with a foreign key. Let's add a new Project class like this:

C#
public class Project
{
    public int ProjectId { get; set; }
    public string Name { get; set; }
    public int ManagerId { get; set; }
    public Person Manager { get; set; }
}

You can see the Manager property is of type Person and I added the ManagerId property to be the key between the two tables.

Now add the DbSet of Project as you did for Person:

C#
public DbSet Projects { get; set; }

Run the application. You should get an InvalidOperationException: The model backing the 'MyContext' context has changed since the database was created. Either manually delete/update the database, or call Database.SetInitializer with an IDatabaseInitializer instance. For example, the DropCreateDatabaseIfModelChanges strategy will automatically delete and recreate the database, and optionally seed it with new data.

This is because the changes we made have too many effects on the database and it should be deleted. But the EF Context can't decide itself if it can drop the database to recreate it. What's the solution? There are two solutions:

  • You can delete the database yourself and rerun the application.
  • You can use SetInitializer using DropCreateDatabaseIfModelChanges.

I won't explain the first solution. About the second one, it's a feature allowed by Code First. You can ask the context to automatically drop and recreate the database if the model changes. You should be very careful with this option, because in a production environment, you can lose all your data. Because we don't want to drop the database ourselves, we will see how to tell the context to do it for us.

In the file MyContext.cs, add a new class: MyInitializer.

C#
public class MyInitializer : DropCreateDatabaseIfModelChanges
{
}

As you can see, the database would be dropped and recreated each time the model changes. You can do more things in the initializer but we will see that later in this post.

Now we will set the initializer. Go back to Program.cs and add the following line at the beginning of the Main method:

C#
Database.SetInitializer(new MyInitializer());

Now you can run our application.

What has happened? The context has detected changes in the model and so, the database has been deleted and recreated. If you check the tables in the database, you should see two tables: People and Project. The person in the Main method has been created in the People table. The item appears only once because the table was recreated and so, the previous record was deleted and not backed up.

If we look closer, we can see a column named ManagerId and another one named Manager_PersonId.

Project table with FK auto generated

The first one was created because of our property ManagerId. The second one was created because of our navigation property to the list of Persons.

Image 2

EF Code First has created a foreign key for us and it's great, but what we'd want is to use the ManagerId property. So let's modify our Project class to use this property vs. let Code First create it for us.

To configure Code First and the way it will generate our database, there are two methods: DataAnnotation and Fluent API.

Let's use DataAnnotation. Modify your class like this:

C#
public class Project
{
    public int ProjectId { get; set; }
    public string Name { get; set; }
    public int ManagerId { get; set; }
    [ForeignKey("ManagerId")]
    public Person Manager { get; set; }
}

You should add the System.ComponentModel.DataAnnotations namespace. Adding the ForeignKey attribute, we say to Code First that we want the ManagerId properties to be used as Foreign Keys to the Person table.

Run the application and check your database schema. The Manager_PersonId column does not exist anymore, there is only the ManagerId column and it is declared as a foreign key to the People table.

Project columns with FK

We just created our first one to many relationship using EF Code First. As we have seen, we can declare the FK in the class or let Code First manage it for us. In the next article, we will talk about Data Annotation and Code Fluent.

History

  • January, 2012: First post.

License

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


Written By
Architect
France France
I'm coding in .Net since 9 years, most with ASP.Net and SharePoint and a little using WPF, MVC, Windows Phone 8 and WinRT technology.
I have learned so much reading others experience and tutorials, or tips so I try to do the same, keeping learning from others of course.
You can also find my blog here : http://sharemstips.wordpress.com/

Comments and Discussions

 
QuestionInformative Pin
JohnAtCubic1-Sep-17 4:34
JohnAtCubic1-Sep-17 4:34 
GeneralMy vote of 5 Pin
S. M. Quamruzzaman Rahmani31-May-14 20:18
S. M. Quamruzzaman Rahmani31-May-14 20:18 
QuestionDataAnnotations for VS2012 Pin
Charlie Dennison11-Apr-14 8:15
Charlie Dennison11-Apr-14 8:15 
GeneralMy vote of 5 Pin
EsseyG9-Feb-14 23:15
professionalEsseyG9-Feb-14 23:15 
QuestionDatabase variable in the article Pin
Quentin V15-Feb-13 2:55
Quentin V15-Feb-13 2:55 
SuggestionMore informationn on the API Pin
Dean Oliver25-Jan-12 3:50
Dean Oliver25-Jan-12 3:50 
Good concise article. But I was wondering would it not be more beneficial to show all the aspects of code firsts DataAnnotations as well as the fluent api. For a more intuitive article.
GeneralRe: More informationn on the API Pin
Nadege Rouelle25-Jan-12 20:55
Nadege Rouelle25-Jan-12 20:55 
GeneralMy vote of 5 Pin
Florian Rappl25-Jan-12 2:42
professionalFlorian Rappl25-Jan-12 2:42 
GeneralRe: My vote of 5 Pin
Nadege Rouelle25-Jan-12 20:51
Nadege Rouelle25-Jan-12 20:51 

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.