How can I get a PDB file for the EntityFramework NuGet package?

后端 未结 3 708
小蘑菇
小蘑菇 2020-12-29 20:08

I\'m trying to debug a StackOverflow in the EntityFramework NuGet package (version 6.1.3). In order to see the stack frames I need the PDB file for EntityFramework.DLL and E

3条回答
  •  梦毁少年i
    2020-12-29 20:41

    Download the source code: entity framework on codeplex

    The download button is in the sub-menu on the Source tab

    Once downloaded:

    • Build the solution/project

    • Navigate to the bin directory NB: it is not in the normal location, its set to "..\..\bin\Debug\". See Project properties.

    The EntityFramework.pdb and the EntityFramework.SqlServer.pdb are both there.

    Also would of thought, it would be available by default or easier.

提交回复
热议问题