3

我有以下代码,旨在列出在 Freebase 上列出的证券交易所网站:

#if INTERACTIVE
#r @"C:\Users\kit\Documents\Visual Studio 11\Projects\Demo\packages\FSharpx.TypeProviders.1.7.4\lib\40\FSharpx.TypeProviders.dll"
#r @"C:\Users\kit\Documents\Visual Studio 11\Projects\Demo\packages\FSharpx.TypeProviders.Freebase.1.7.4\lib\40\FSharpx.TypeProviders.Freebase.dll"
#r @"C:\Users\kit\Documents\Visual Studio 11\Projects\Demo\packages\FSharpx.TypeProviders.Freebase.1.7.4\lib\40\FSharpx.TypeProviders.Freebase.DesignTime.dll"
#endif 

let GetExchanges() =
    let dc = FreebaseData.GetDataContext()
    dc.DataContext.SendingRequest.Add(fun e -> printfn "url: %s" e.RequestUri.AbsoluteUri)

    dc.``Products and Services``.Business.``Stock exchanges``
    |> Seq.truncate 10
    |> Seq.iter (fun exchange -> printfn "Exchange: %s" exchange.Name
                                 exchange.``Official website``
                                 |> Seq.iter (fun site -> printfn "%s" site.Name))

如果没有最后两行(即仅列出 Exchange 名称),则代码可以正常工作。有了这些行,我得到了 400(错误请求)。

该行生成的 URL 是这样的:

https://www.googleapis.com/freebase/v1/mqlread?query=%5B%7B%22/type/object/id%22:null,%20%22/type/object/name%22:null% 20,%20%22可选%22:true,%20%22/type/object/type%22:%22/type/uri%22,%20%22!/common/topic/official_website%22:%20% 5B%7B%22/type/object/id%22:%22/en/amex%22,%22/type/object/type%22:%22/common/topic%22%20,%20%22limit% 22:%20500%7D%5D%7D%5D&光标

...如果我浏览到它,我会从 Freebase 得到这个:

{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "badRequest",
    "message": "Can't reverse /common/topic/official_website as it expects /type/uri, not an object"
   }
  ],
  "code": 400,
  "message": "Can't reverse /common/topic/official_website as it expects /type/uri, not an object"
 }
}

Am I using the correct approach to accessing linked entities? If so, is this a bug in the Type Provider? I get similar errors accessing other linked entities.

4

2 回答 2

4

This was a bug in the Type Provider that has since been fixed: https://github.com/fsharp/FSharp.Data/issues/68

于 2013-02-08T10:42:51.293 回答
4

Like the error says, you can't reverse a property which is primitive value property. You need to turn the query inside out so that it looks like:

[{
  "/type/object/id": "/en/amex",
  "/common/topic/official_website": [{
    "value":    null,
    "optional": true
  }]
}]​

The library must have some knowledge of primitive values, so perhaps it's a simple as adding /type/uri to whatever list it has containing /type/text, /type/rawstring, etc.

于 2013-02-08T16:55:20.977 回答