First lets create the table Map with those two fields as following: Second lets make a very simple stored procedure that would select the Lat/Lng according to the chosen ID: Create procedure SetLocation (@CID int) as select [Lat],[Lng] from [dbo].[Map] where CID=@CID Third now lets create an MVC 5 "I used here Visual Studio 2015 CTP 5″ [...]