F#从SQL Server表中选择同义词

时间:2014-07-11 14:13:01

标签: sql f# synonym type-providers

我的SQL Server数据库中有一个表的同义词。

我想从表中选择行,但是当我使用类型提供程序创建数据上下文时,我不会在创建的数据上下文中看到同义词。

同义词的创建方式如下:

CREATE SYNONYM [AnotherDatabase_dbo].[MyTable] FOR [AnotherDatabase].[dbo].[MyTable]

我创建了这样的数据上下文:

type dbSchema = SqlDataConnection<"Data Source=MyServer\MyInstance;Initial Catalog=MyDatabase;Integrated Security=SSPI;">
let db = dbSchema.GetDataContext ()

如何从F#访问同义词?

1 个答案:

答案 0 :(得分:1)

更多的解决方法而非解决方案,但下面的代码允许您通过F#访问同义词。 这使用FSharp.Data库,可通过NuGet或此处获取:http://fsharp.github.io/FSharp.Data/。 注意:需要SQL 2012或更高版本。

open FSharp.Data

[<Literal>]
let connectionString = @"Data Source=MyServer\MyInstance;Initial Catalog=MyDatabase;Integrated Security=SSPI;"

[<Literal>]
let query = "select Id, Name from MyTable" 

type OptionQuery = SqlCommandProvider<query, connectionString>
let cmd = new OptionQuery()

cmd.AsyncExecute() 
|> Async.RunSynchronously
|> Seq.iter (fun row -> printfn "Found row: %d %s" row.Id row.Name)

System.Console.Write("Done")
System.Console.ReadKey()