gpt4 book ai didi

c# - 如何在模型类中将 appsettings.json 文本作为 SQL 连接字符串传递? (具体例子)

转载 作者:行者123 更新时间:2023-11-30 15:20:55 25 4
gpt4 key购买 nike

我正在将一个 ASP.NET 项目迁移到 ASP.NET Core 中,我试图在 .NET Core 中实现 DbContext 功能。我正在尝试将不同的 SQL Server 信息传递给作为参数传递给基本构造函数的 optionsBuilder。我有以下上下文模型类:

public partial class CompanyFormsContext : DbContext
{
public CompanyFormsContext() : base (CreateOptions(null))
{}

public CompanyFormsContext(string connName) : base (CreateOptions(connName))
{}

//NEED TO CONNECT CONFIGURATION HERE
private static DbContextOptions<CompanyFormsContext> CreateOptions(string connName)
{
var optionsBuilder = new DbContextOptionsBuilder<CompanyFormsContext>();

if (connName == null)
{
optionsBuilder.UseSqlServer("Server=(localdb)\\projectsv13;Database=coforms;Trusted_Connection=True;");
}
else
{
//THIS IS HOW IM TRYING TO MAKE IT
//similar to --> Configuration["Data:CompanyFormsContext:ConnectionString"]"
optionsBuilder.UseSqlServer(Configuration["Data:" + connName + ":ConnectionString"]);
}

return optionsBuilder.Options;
}
...

我想通过appsettings.json中的信息传入我的SQL Server信息,如下:

  "Data": {
"CompanyFormsContext": {
"ConnectionString": "Server=(localdb)\\projectsv13;Database=coforms;Trusted_Connection=True;"
},
"CompanyFormsContextQA": {
"ConnectionString": "Server=(localdb)\\projectsv13;Database=coforms;Trusted_Connection=True;"
}
},

我发现了以下问题,但我相信自 RC2 更新以来语法已经发生了一些变化,因为我无法使用这些解决方案或者我做错了。

Setting the SQL connection string for ASP.NET 5 web app in Azure

我如何为 SQL Server 输入使用类似于 Configuration["Data:CompanyFormsContext:ConnectionString"] 的语法?或者有更好的方法吗?启动文件中应该具体包含什么?我有以下内容:

public Startup(IHostingEnvironment env)
{
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
.AddEnvironmentVariables();
Configuration = builder.Build();
}

public IConfigurationRoot Configuration { get; set; }

public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc();
services.AddOptions();
}
...

如果需要,我可以简化问题,专门询问有关在模型类中使用 appsettings.json 的问题。我意识到我在这里有额外的信息来澄清具体情况。

最佳答案

解决方案一

您是否尝试为 QA 加载不同的环境?如果是这样,您应该在项目属性中使用一个名为:

ASPNETCORE_ENVIRONMENT : Development

ASPNETCORE_ENVIRONMENT : QA

然后修改launchSettings.json:

{
...
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express (QA)": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "QA"
}
}
}
}

然后您可以为每个名为 StartupDevelopment.csStartupQA.cs 的环境创建一个单独的 Startup.cs 文件。这将允许基于环境的不同启动配置文件。

方案二

您是否尝试根据上下文加载单独的连接字符串(应用程序中的不同上下文加载不同的连接)?如果是这样:

最好的方法是不使用 Context 来初始化连接。这应该在 Startup.csConfigureServices 方法中完成。您可以根据 json 文件中的键设置连接字符串:

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// Load the first connection string
var connectionStringA = Configuration["Data:DefaultConnection:ConnectionStringA"];
// Load the second connection string
var connectionStringB = Configuration["Data:DefaultConnection:ConnectionStringB"];
// Set up Entity Framework
services.AddEntityFramework()
.AddSqlServer()
.AddDbContext<ContextA>(options => options.UseSqlServer(connectionStringA))
.AddDbContext<ContextB>(options => options.UseSqlServer(connectionStringB));
}

现在您的上下文将从 JSON 文件正确加载连接字符串。

关于c# - 如何在模型类中将 appsettings.json 文本作为 SQL 连接字符串传递? (具体例子),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38948676/

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