### Drop Database
``` CLI
dotnet ef database drop
```
### Update Database
``` CLI
dotnet ef database update
```
### Information about DBContext
``` CLI
dotnet ef dbcontext info
```
### List DBContext
``` CLI
dotnet ef dbcontext list
```
### Add Migrations
``` CLI
dotnet ef migrations add 'Name migrations'
```
### List migrations
``` CLI
dotnet ef migrations list
```
### Remove migrations (Remove the last migration)
``` CLI
dotnet ef migrations remove
```
### Generate a SQL script from migrations
``` CLI
dotnet ef migrations script
```