在JArray上找不到Select方法



我在WP8C#项目中使用Newtownsoft.Json。

我不知道为什么我的JArray对象不能使用LINQ到JSON中的Select方法。

我在cs文件的顶部:

using Windows.Data.Json;
using Newtonsoft.Json.Linq;

然后:

  JsonObject jsonObject = new JsonObject();
  var sr = new StreamReader(e.Result);
  var lignes = sr.ReadToEnd();
  JObject o = JObject.Parse(lignes);
  JArray featureArray = (JArray)o["features"];
  IList<ItemViewModel> features = featureArray.Select(p => new ItemViewModel ...

.Select引发编译错误。

我错过了什么?

SelectSystem.Linq命名空间中的一个扩展方法。

您需要包括

using System.Linq;

以及其他using语句。

相关内容

  • 没有找到相关文章

最新更新