gpt4 book ai didi

c# - 在使用 dapper 时关闭阅读器时调用 Read 的尝试无效

转载 作者:太空宇宙 更新时间:2023-11-03 19:47:57 31 4
gpt4 key购买 nike

使用 dapper 框架从表中检索记录时出现以下错误

Invalid attempt to call Read when reader is closed

下面是我的代码

var sql = "SELECT * FROM LMS_QuestionCategory";
var rows = new List<Dictionary<string, int>>();

using (IDbConnection dbConnection = Connection)
{
var reader = dbConnection.ExecuteReader(sql);

while (reader.Read())
{
var dict = new Dictionary<string, int>();

for (var i = 0; i < reader.FieldCount; i++)
{
dict[reader.GetName(i)] = reader.GetInt32(i);
}

rows.Add(dict);
}
}

为什么会出现此错误?

最佳答案

您必须打开连接:

using (IDbConnection dbConnection = Connection)
{
dbConnection.Open() //<--open the connection
var reader = dbConnection.ExecuteReader(sql);
...

关于c# - 在使用 dapper 时关闭阅读器时调用 Read 的尝试无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43046005/

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