Tôi biết câu hỏi này đã được hỏi cách đây khá lâu, nhưng tôi nghĩ mình sẽ thêm tham chiếu vào SqlProvider . Điều này gần đây đã có hỗ trợ cho PostgreSQL được thêm vào nó và nó bao gồm hỗ trợ cho SPROCS.
[<Literal>]
let connStr = "User ID=postgres;Password=password;Host=POSTGRESQL;Port=9090;Database=hr;"
[<Literal>]
let resolutionFolder = @"D:\Downloads\Npgsql-2.1.3-net40\"
type HR = SqlDataProvider<ConnectionString=connStr,DatabaseVendor=Common.DatabaseProviderTypes.POSTGRESQL, ResolutionPath = resolutionFolder>
let ctx = HR.GetDataContext()
ctx.Procedures.ADD_JOB_HISTORY(100, DateTime(1993, 1, 13), DateTime(1998, 7, 24), "IT_PROG", 60)
//Support for sprocs that return ref cursors
let employees =
[
for e in ctx.Functions.GET_EMPLOYEES().ReturnValue do
yield e
]
Nơi thư mục phân giải trỏ đến vị trí của các hội đồng NPGSQL .NET.