输入字符串的格式不正确。但是我没有字符串数据

时间:2012-08-02 11:03:15

标签: c# asp.net web-services

您可以在下方返回数据和例外。我使用Web服务来调用类的方法。

  List<CargoOptionTo> list = ds.CargoOptionList().AsQueryable().OrderBy(sidx + " " + sord).ToList();

在此代码之后,抛出异常。

enter image description here

这是我的返回数据:

enter image description here

你有什么建议吗?

2 个答案:

答案 0 :(得分:0)

您应该使用lambda来定义OrderBy

.OrderBy(x => x.SortField)

答案 1 :(得分:0)

我只是删除了我的服务引用并再次添加然后解决了。