Database First approach in Entity Framework

The database first approach creates model classes,dbcontext from an existing database.
The database first approach creates model Database first approach is straight forward:
Step 1: Select ADO.NET Entity data model.
Step 2: Select EF designer from database and click next button.
Step 3: Select existing database and click next.
Step 4: choose entity framework 6.x and click next
Step 5: select all tables,views,stored procedures you want to include and click finish.
Step 6: Eventually you will see the entity model and POCO classes generated from database.