Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to fix System data pdb not loaded

Tags:

c#

asp.net

I am geting this error when

return(t.Fill(sqlnsConnectionString, String.Format(" SELECT  * FROM List   {0} ", filter)))

How to fix data.pdb not loaded

enter image description here

like image 735
Vahagn Avatar asked Dec 01 '17 15:12

Vahagn


1 Answers

To "fix" you'd need the System.Data pdb but if you don't want to be nagged by the message telling you it can't locate the .pdb file, you can try

Tools -> Options -> Debugging -> General

check the box for "Enable just My Code".

like image 133
mungflesh Avatar answered Sep 28 '22 10:09

mungflesh