public void UpdateViewsCount(int id)
 {
     using (var context = new URLShortenerDataContext(_connectionString))
     {
         context.ExecuteCommand("UPDATE URLs SET Views = Views + 1 WHERE Id = {0}", id);
     }
 }