找不到段'x'的资源

时间:2011-11-23 13:00:36

标签: c# .net wcf

我收到此错误:找不到段“GetTest”的资源。

代码是这样的:

    [WebGet]
    public IQueryable<string> GetTest()
    {
        var tmp = new List<string>();
        return tmp.AsQueryable();
    }

任何想法有什么不对?

1 个答案:

答案 0 :(得分:0)

找不到不存在的主键时,

“找不到该段的资源”

尝试使用try-catch

try  
{  
   var tmp = new List<string>();
   return tmp.AsQueryable();
}  
catch( DataServiceQueryException ex )  
{  
   return null;
}