Calling a stored procedure in Postgresql through F# and Npgsql
问题 I am trying to call a stored procedure in postgresql from F# using the Npgsql type provider. Currently, I am connected to the database as follows: open System open System.Data open System.Data.Entity open System.Data.Linq open Microsoft.FSharp.Data.TypeProviders open Microsoft.FSharp.Linq open Npgsql open NpgsqlTypes type internal dbSchema = SqlEntityConnection<ConnectionString="**my connection string**", Provider="Npgsql"> let internal db = dbSchema.GetDataContext() However, I only see the