You are missing the Microsoft.EntityFrameworkCore.Relational library.
To install it First, you need to see which version you need. Go to this link and under Dependencies look for it.
For example, I had Microsoft.EntityFrameworkCore 1.1.2 so I use the version 1.1.2 of Microsoft.EntityFrameworkCore.Relational.
Then you can installed using the Package Manager.
Open the console in Visual Studio using the Tools > NuGet Package Manager > Package Manager Console command
Paste the code to install the library in the PM console.
PM> Install-Package Microsoft.EntityFrameworkCore.Relational -Version 1.1.2