如何在AppService中获取连接字符串?

时间:2018-01-14 10:47:18

标签: aspnetboilerplate

是否可以从AppService获取连接字符串?我想直接使用Dapper,如下所示:

using (IDbConnection db = new SqlConnection(_connString))
{
   //My code here
}

我可以从AppService获取_connString吗?

1 个答案:

答案 0 :(得分:1)

ABP的Dapper整合。

从Nuget安装Dapper https://www.nuget.org/packages/Abp.Dapper

阅读文档https://aspnetboilerplate.com/Pages/Documents/Dapper-Integration

如果您仍想获得连接字符串,可以从config

获取
ConfigurationManager.ConnectionStrings["Default"];

或者您可以创建自定义存储库并从DbContext

获取它