f# - FSharp data type provider for Postgresql -
i trying fsharp data provider against postgresql using npgsql. , busted @ first line. when trying create sqldataconnection throwing error message connection string not correct. the type provider 'microsoft.fsharp.data.typeproviders.designtime.dataproviders' reported error: keyword not supported: 'port:5432;database'. now, test connection string , data using servicestack.ormlite. uses idbconnection. so, connection correct. don't know why type provider not working. here code. //type dbschema = sqldataconnection<connectionstring = "server=localhost;port=5432; database=testdb;user id=postgres;password=g00gle*92;" > [<climutable>] type person = { id : int; firstname : string; lastname : string } [<entrypoint>] let main args = let dbfactory = ormliteconnectionfactory ( "server=localhost;port=5432; database=testdb;user id=postgres;password=*****;", ...