Create a list, presented in the browser, which will read the contents of the Employees table existing in the SQLite database included in the base project.
Add functionality so that you can add, remove and modify the items of this list.
Additionally, write the following SQL queries and present their results in the front end, ensuring the front end is updated every time the data in the database is modified:
- Increment the field Value by 1 where the field Name begins with ‘E’ and by 10 where Name begins with ‘G’ and all others by 100
- List the sum of all Values for all Names that begin with A, B or C but only present the data where the summed values are greater than or equal to 11171
- Filter Employees List
- EF Core 3.1 Implementation
- Add Service Layer
- Dependency Injection
- Clone the repo
git clone https://github.com/TomJD/metricell-interview.git
- Run the project