Is it possible to work directly with Entity Framework and debug sources within your classes and methods?
>I downloaded the zip code from it contained in CodePlex . I unpacked it into a folder and in my project I added the project directly:
.. \ EntityFramework \ src \ EntityFramework \ EntityFramework.csproj
Compilation does not report any errors. But running my application displays the following error message:
Could not load file or assembly 'EntityFramework' or one of its dependencies. Unable to verify strong name signature. The assembly may have been violated or overdue but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)
Let's say it's for didactics, to further test how it handles some tasks.
If it is possible and this error message is due to something wrong I did or something I stopped doing, what should I do then and how to prepare my application to work directly with the Entity Framework ?
If it is possible and you do this commonly, then how can I organize my project more simply to work with it directly from the sources?
EDITION
As indicated by @Cigano, I'm trying with the repository sources in Github:
However, I'm getting several error messages:
Package references not found. Run 'build initialize' before opening solution for first time.
What is he asking of me? How to do it?