6.2: QuickWatch & Data
Set Breakpoints & QuickWatch
In this module, we will use breakpoints and QuickWatch to see the flow of our data.
Set a breakpoint:
Run the app, login, and create a note
Right click on the word
(model)
withinservice.CreateNote(model)
and choose QuickWatchYou should see your data in the QuickWatch window
Click the Green continue arrow to go past the breakpoint. You should now see your note appear!
Stop the app
Data
Go the the SQL Server Object Explorer
Find the database and expand the tables
Right click on
dbo.Note
and click View DataYou should see the note(s) you've created in the database
Diagram of how the models work with the service methods:

Next, we'll refactor some things for creating a note.
Last updated