无论出于何种原因,我都不能在查询表达式中使用“for”构造。我得到的是以下错误。代码我就是我以前选择的代码 - > “错误:只有在计算表达式构建器定义'For'方法”
时,才能使用此控件构造#r "System.Data.Linq.dll"
#r "FSharp.Data.TypeProviders.dll"
open FSharp.Linq
open FSharp.Data.TypeProviders
[<Literal>]
let connectionString' = @"
data source = ...;
initial catalog = NORTHWND;
Integrated Security = SSPI"
type NorthwndDb =
SqlDataConnection<connectionString', Pluralize = true>
let db' = NorthwndDb.GetDataContext()
let curstomerSortedByCountry =
query { for c in db'.Customers do
sortBy c.Country
select (c.Country, c.CompanyName) }
|> Seq.cache
答案 0 :(得分:7)
我无法使用您的代码片段对此进行测试(没有数据库来对此进行测试),但我认为如果您定义了一个名为query
的变量,则会报告您所报告的错误类型在query
表达式之前的代码段中的某处。例如:
let query = "oops!"
let curstomerSortedByCountry =
query { for c in [1 .. 10] do
sortBy c
select c }
错误FS0708:只有在计算表达式构建器定义“For”方法时才能使用此控件构造
原因是query
中的标识符query { .. }
只是标准F#库中声明的变量,其中包含query.For
等各种成员。如果您使用自己的声明隐藏此内容,则无法找到该成员。