gpt4 book ai didi

c# - 在 ServiceStack.Data.IDbConnectionFactory 中没有调用 open 的扩展方法

转载 作者:太空宇宙 更新时间:2023-11-03 21:05:23 25 4
gpt4 key购买 nike

我想使用 servicestack.ormlite 连接到数据库。但即使在添加了 Nuget 的引用后,我也会收到此错误。

我是用这个命令安装的

Install-Package ServiceStack.OrmLite.SqlServer

这是抛出的错误

'ServiceStack.Data.IDbConnectionFactory' does not contain a definition for 'Open' and no extension method 'Open' accepting a first argument of type 'ServiceStack.Data.IDbConnectionFactory' could be found (are you missing a using directive or an assembly reference?)

var dbFactory = new OrmLiteConnectionFactory(connectionString, SqliteDialect.Provider);
//I get error when I call open method
using (IDbConnection db = dbFactory.Open())
{

}

最佳答案

IDbConnectionFactory.Open() 扩展方法在 OrmLiteConnectionFactoryExtensions 中定义这是在 ServiceStack.OrmLite 命名空间下定义的,因此您需要导入:

using ServiceStack.OrmLite;

关于c# - 在 ServiceStack.Data.IDbConnectionFactory 中没有调用 open 的扩展方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41519682/

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