We know that automatic deplyment is currently broken.
How does one debug the stored procedures in this case
Thanks,
Alexey
.NET Framework inside SQL Server Katmai
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.