Goal: Practice using a database while becoming more familiar with Entity. Focus on adding create and read functionality to your applications. If you have extra time, consider looking at tonight's lessons for adding update and delete functionality. We recommend using WWW SQL Designer to plan out tables and columns.
Follow along with the lessons from the homework to integrate EF Core into a To Do List application.
Make a program for an animal shelter to track the animals in their facility based on animal type (such as cat or dog). Build out features that let a shelter worker:
type
should be a column on the animals
table. A type could be a cat, dog, bunny or any other animal.Make a website where users can inventory their collections. This collection could be anything from records to rocks to board games, depending on your interest. The application should have full create and read functionality.
If you complete the projects above with time to spare, tackle these additional features:
Search()
method in either the Inventory or Animal Shelter application. It should take the name of the animal or item as an argument and return any animals or items that match.