Coded in C#
in the attachments you will find a database file named populationDB.mdf. The database has a table named CITY. The CITY table looks like the picture in the attachments
The CITY column stores the name of a city and the POPULATION column stores the population of that city. The database has 20 rows already entered.
Create an application that connects to the PopulationDB.mdf database and allows the user to perform the following:
use data-bound controls to add new rows to the database, change existing rows, and delete rows.
Sort the list of cities by population, in ascending order.
Sort the list of cities by population, in descending order.
Sort the list of cities by name.
Get the total population of all the cities.
Get the average population of all the cities.
Get the highest population.
Get the lowest population.
and please include comments in the code.