gpt4 book ai didi

f# - Dapper F# - A Parameterless default 一个无参数的默认构造函数或一个匹配的签名

转载 作者:行者123 更新时间:2023-12-05 09:03:34 24 4
gpt4 key购买 nike

出于演示目的,我正在制作一个 Insert 函数,我想返回一个传入类型的变量。

我是初始查询的用户 Dapper.fsharp,然后我想运行原始 SQL 查询以获取最后插入的值。

所以我有这样的东西用于演示目的

let Insert<'a> asyncQuery =
asyncQuery
|> connection.InsertAsync<'a>
|> RunSynchronously
|> ignore
(*This is a Dapper.fsharp query. Running this returns the number of rows inserted (int) *)

let table = asyncQuery.Table (*This is a string*)
let result =
connection.Query<'a>($"""Select * From {table} Where id = (select last_insert_id())""") (*Should return an IENumerable of type 'a*)
|> EnumerableToArray

result |> first

然后这就是所谓的喜欢

let newSession =
insert {
table "sessions"
value newSession
} |> Insert

其中 newSession 是 session 类型

module Session
type session = {id: int; session_id: string; clerk_json: string; clerk_id: int; expires: int}
(*This is also the structure of the SQL table exactly*)

我得到的错误是

"A parameterless default constructor or one matching signature (System.Int32 id, System.String session_id, System.Int32 clerk_id, System.String clerk_json, System.Int32 expires) is required for Session+session materialization"

这向我表明它没有从数据库中获得正确的类型签名,但列名和类型匹配,并且表中没有任何内容为空。

也许我忽略了一些简单的事情或误解了应该如何使用该库?

最佳答案

类型必须是 [<CLIMutable>] ...

关于f# - Dapper F# - A Parameterless default 一个无参数的默认构造函数或一个匹配的签名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69868828/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com