I am trying to update an EDMX Stored Procedure and I am getting this error:
Cannot implicitly convert type System.Data.Entity.Core.Objects.ObjectResult
You need to upgrade to the new Entity Framework 6 runtime.
Right-click on your project and select Manage NuGet Packages...
Under the Online
tab select EntityFramework
and click Install
Note: If a previous version of the EntityFramework NuGet package was installed this will upgrade it to EF6.
Alternatively, you can run the following command from Package Manager Console:
PM> Install-Package EntityFramework
Reference: http://msdn.microsoft.com/en-US/data/upgradeEF6