我收到此错误:找不到段“GetTest”的资源。
代码是这样的:
[WebGet]
public IQueryable<string> GetTest()
{
var tmp = new List<string>();
return tmp.AsQueryable();
}
任何想法有什么不对?
答案 0 :(得分:0)
“找不到该段的资源”
尝试使用try-catch
try
{
var tmp = new List<string>();
return tmp.AsQueryable();
}
catch( DataServiceQueryException ex )
{
return null;
}