F# groupBy - System.Exception : unrecognized method call

吃可爱长大的小学妹 提交于 2021-01-27 04:41:13

问题


I'm trying to query data with F# SqlDataProvider but I got strange error when I'd like to use groupBy function

my init code :

r# "packages/FSharp.Data.2.2.5/lib/net40/FSharp.Data.dll"
r# "packages/SQLProvider.1.0.0/lib/FSharp.Data.SQLProvider.dll"
r# "packages/FSharp.Data.TypeProviders.5.0.0.2/lib/net40/FSharp.Data.TypeProviders.dll"

open FSharp.Data
open FSharp.Data.Sql
open FSharp.Data.TypeProviders
open FSharp.Linq
open System.Text.RegularExpressions
open System
open System.Data

type dbSchema = SqlDataProvider<
                    ConnectionString = "my-connection-string",
                    DatabaseVendor = Common.DatabaseProviderTypes.MSSQLSERVER,
                    IndividualsAmount = 1000,
                    UseOptionTypes = true>
let db = dbSchema.GetDataContext()

my query :

query {
    for county in db.Dbo.Countries do
    groupBy county.CountryCode into g
    select (g.Key, g.Count())
    } |> Seq.iter (fun (key, count) -> printfn "%s %d" key count)

I got this error :

System.Exception: unrecognised method call at Microsoft.FSharp.Linq.RuntimeHelpers.LeafExpressionConverter.EvaluateQuotation(FSharpExpr e) at Microsoft.FSharp.Linq.QueryModule.EvalNonNestedInner(CanEliminate canElim, FSharpExpr queryProducingSequence) at Microsoft.FSharp.Linq.QueryModule.clo@1735-1.Microsoft-FSharp-Linq-ForwardDeclarations-IQueryMethods-Executea,b at .$FSI_0003.main@() in C:\Development\CountriesParser\Script1.fsx:line 36

The line 36 is exact line of groupBy.

As I read in these pages, it should work http://fsprojects.github.io/FSharp.Linq.ComposableQuery/QueryExamples.html https://msdn.microsoft.com/en-us/library/hh225374.aspx


回答1:


There is a number of different SQL type providers for F# and I think your code uses community-driven one that does not support the groupBy construct at the moment.

  1. The type SqlDataProvider comes from SQLProvider package and is documented here.
  2. The FSharp.Data.TypeProviders library (also distributed with Visual Studio) is documented here and exposes SqlDataConnection type.
  3. You also mentioned ComposableQuery library documented here, which is an extension that you can use on top of (2), but you're not doing that in your code.

The library (1) is nicer in a number of ways, but does not support the full query language yet, so you'll probably need to switch to (2).

To do that, reference just FSharp.Data.TypeProviders (you do not need the other two packages) and then use the SqlDataConnection type, following the MSDN Walkthrough on the topic



来源:https://stackoverflow.com/questions/36864707/f-groupby-system-exception-unrecognized-method-call

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!