I built a .NET web service connecting to an SQL Server database. There is a web service call GetAllQuestions() that will not change. I saved the result of GetAllQuestions to GetAllQuestions.xml in the local application folder and set it to content. Normally I would get the result of the web service like this:
var myService = new SATService();
var serviceQuestions = myService.GetAllQuestions();
I want to try something like:
var serviceQuestions = File.Open("GetAllQuestions.xml");
Any suggestions are much appreciated!