Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Source Code for Entity framework 6.0.2

Why is there no source code history for entity framework:

http://entityframework.codeplex.com/releases/view/114074

We can download and build the latest release 6.1 (alpha) which we dont want to do but we cannot download and build earlier releases 6.0.2 (stable) which we do want to do?

Can anyone point me in the direction of finding that source code?

like image 219
Daniel Haddon Avatar asked Jan 30 '14 11:01

Daniel Haddon


People also ask

Is EF6 still supported?

Although Entity Framework 6. x is still supported, it is no longer being developed and will only receive fixes for security issues.

How do I code first in Entity Framework?

Step 1 − First, create the console application from File → New → Project… Step 2 − Select Windows from the left pane and Console Application from the template pane. Step 3 − Enter EFCodeFirstDemo as the name and select OK. Step 4 − Right-click on your project in the solution explorer and select Manage NuGet Packages…

Can I use EF6 with ASP NET core?

You can't put an EF6 context in an ASP.NET Core project because . NET Core projects don't support all of the functionality that EF6 commands such as Enable-Migrations require.

What is Entity Framework in C# with example?

Entity Framework (EF) is an object-relational mapper that enables . NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Get it: Add this to your project and start taking advantage of this powerful O/RM.


1 Answers

You can download source code directly from the Git repository.

The revision 7648d33dfb53589d9c32b605c61758a5a6c0b80b is tagged with 6.0.2 tag.

like image 183
Lukas Kabrt Avatar answered Nov 15 '22 11:11

Lukas Kabrt