我已经下载了一个应用程序,其中我无法找到在哪里进行地狱数据库操作的事情是有一个 localhost 的 url 例如:- localhosttest/search/products 和代码被编写为发送 xml 作为 POST 的数据,然后在返回响应来自我的数据库。但是我无法在这个 mvc4 应用程序的代码或 sql 中找到任何选择、插入、更新查询。我怎么能找到那个。任何帮助都会很棒谢谢代码是这样的
protected T Execute<T>(Product request) where T : new()
{
System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
T response = default(T);
RestfulQuery query = new RestfulQuery(string.Format("{0}/{1}", _asUrl, request.Resource));
string result = string.Empty;
string mimeType = "application/xml";
switch (request.Method)
{
case Method.GET:
query.Method("GET")
.MimeType(mimeType);
break;
case Method.POST:
query.Method("POST")
.MimeType(mimeType)
.WriteParam(request.Data);
break;
case Method.PUT:
query.Method("PUT")
.MimeType(mimeType)
.WriteParam(request.Data);
break;
case Method.DELETE:
query.Method("DELETE")
.MimeType(mimeType)
.WriteParam(request.Data);
break;
}
result = query.Execute();
response = SerializerHelper.Deserialize<T>(result);
}
return response;
}
}