Debug SP in SQL Studio

Debug SP in SQL Studio

Hi I am trying to debug SP in Studio for SQL Server  it is workign well and, I also can see veriable value which declare in SP like int or nvarchar veriables. but if i ma using tbale veribale like ,  CREATE TABLE #TempValidation
 (
     TempValidationID INT IDENTITY(1, 1),
     ValidationMessage NVARCHAR(MAX) NOT NULL
         DEFAULT ''
 );

then how I can see tbale values after insert in table . Add watch not working if I add table veriable in watch then it is show string tbale insted of table vlaues. So How I can see table veribale vaues while doing debug.