Tel Map

Tag: Entity Framework 7

2016-03-21 | ASP .NET |

ASP .NET 5 Identity with Entity Framework 7 Setup

In this article we will demonstrate how to provide authentication to ASP .NET 5 applications using ASP .NET Identity with Entity Framework 7. Adding Packages Add the following package to your ASP .NET project. This will automatically pull in additional required dependencies… more

2016-03-07 | ASP .NET |

Code First Migrations Entity Framework 7

Create Initial Code First Migration In order to do Code First Migrations, you first have to set up the command dnx ef. Code first means, that you first do database model changes in the Entity Framework database classes and then apply the changes to… more

2016-03-02 | ASP .NET |

Entity Framework 7 Scaffold DbContext from Existing Database

In previous to 7 versions of the Entity Framework all Entity Framework related commands could be executed within Visual Studio. Now you have to use the new ASP .NET 5 dnx command instead. DbContext Model Migration from Entity Framework 6 In order… more

2016-02-25 | ASP .NET |

ASP .NET 5 with Entity Framework 7

Adding Entity Framework 7 Packages to ASP .NET Project Older versions of the Entity Framework need a full .NET runtime in order to work. If at some point you want to use the new .NET 5 Core e.g. to run your application… more