How to downgrade Entity framework from 6 to 5?

.net, entity-framework

Solution

in the nuget package console for your project (select it in the dropdown) type:

Uninstall-package EntityFramework
Install-Package EntityFramework -version 5.0.0

Problem

I'm creating a Asp.Net MVC project using VS2013 and added hottowel (2.0.1) using nuget. However, the breeze doesn't work with Entity Framework 6. How to downgrade the Entity Framework 6 of the created project to EF5?

Original source