Question: For C#, Visual Studio Create a food critic web application that will allow a user to: 1. List the contents of the database - along
For C#, Visual Studio
Create a food critic web application that will allow a user to:
1. List the contents of the database - along with all of the columns
2. Give the ability to delete 1 entry at a time (use an img X or allow for a box that takes an criticID to delete)
3. Give the ability to add an entry
4. Give the ability to update an entry (similar to delete)
That's all the requirements - design it however you would like.
---------------------------------------------------------------------------------------
use a table called tblRestaurantFoodCritic that has the following columns:
criticId (int) - unique id of the entry
restaurantName (varchar 50) - name of the restaurant
foodName (varchar 50) - name of the food
rating (int) - the value 0-10 of the food
ratingDesc (varchar 500) - the reason you gave the rating
criticName (varchar 50) - a name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
