How to debug CLR SP using Visual Studio 2005?
We know that automatic deplyment is currently broken.
How does one debug the stored procedures in this case?
Thanks,
Alexey
We know that automatic deplyment is currently broken.
How does one debug the stored procedures in this case?
Thanks,
Alexey
Ok I got it.
I have to manually load .PDB as well:
CREATE
ASSEMBLY ExecuteExternalReturnTableFROM
'<...>\ExecuteExternalReturnTable\bin\Debug\ExecuteExternalReturnTable.dll'WITH
PERMISSION_SET = UNSAFE;ALTER
ASSEMBLY ExecuteExternalReturnTable ADD FILEFROM \'<...>\ExecuteExternalReturnTable\bin\Debug\ExecuteExternalReturnTable.pdb'
Then I can attach to SQL Server and my breakpoints will work.