In order for this to work you will have to have Entity Framework installed on your IDE
Navigate to: Visual Studio > Tools > NuGet Pckg Manager > Console
Type: enable-migrations
Type: add-migration MyMigration where MyMigration is the name
Type: update-database
Type an employee's name
then the console waits for a user input and saves that to the Database
after one keypress it prints every entry in the Database.
Type an employee's name
> John Doe user input
John Doe
David Evans
Jackie Chan
where John Doe is the latest entry and David Evans , Jackie Chan are previous entries in the Database
if you haven't noticed already, I made a little big mistake naming the class Employees istead of Employee but anyways, I hope this helps.