Let's create some stored procedures that our app will use to interact with the database tables:
- Copy the contents of the SQL Script at https://github.com/PacktPublishing/ASP.NET-Core-3-and-React-17/blob/master/Chapter07/backend/SQLScripts/02-Sprocs.sql.
- Click New Query to create a new SQL query and paste in the contents from the copied script.
- Click the Execute option on the toolbar.
- If we look under Stored Procedures under Programmability in Object Explorer, we should see that several stored procedures have been created:
We'll be using these stored procedures to interact with the database from the ASP.NET Core ...