So I'm fairly new to MVC and C# in Visual Studio. I recently completed the tutorial located at:
It was fun and educational in some aspects. I have one question though about the database it connects to, in the tutorial it creates a local SQL Server database and the CRUD then works off that. I currently have an external SQL Server database hosted on a server that I would like to be able to play with, I have successfully connected to it through Visual Studio (2012) but was wondering how hard it is to transfer the CRUD over to it.
After reading up a little bit I altered the connection string, and added:
using System.Data.SqlClient
But I am still using:
using System.Data.Entity
Unsure if I need both, and I am ofc using EF (Entity Framework).
Can anyone advise what other steps would need to be done in order to successfully transfer this over? Or in what direction I should look because tbh I am not a database or SQL expert (or MVC) and it gets a bit confusing.
Any helps, links or tutorial locations would be greatly appreciated.

