在我的WPF项目中找不到appsettings.json

时间:2019-08-05 09:32:54

标签: c# wpf .net-core

因此,我正在新的.net core 3.0框架中创建WPF应用程序!我正在尝试将connectionstring添加到appsettings.json中。但问题是我在项目中找不到appsettings.json。我该如何解决?!是否会自动添加appsettings.json还是我必须自己制作!?

1 个答案:

答案 0 :(得分:1)

您需要手动添加。可以找到{@ 3}}的一个小方法。

基本上,您的appsettings.json看起来像这样:

{
  "ConnectionStrings": {
    "BloggingDatabase": "Server=(localdb)\\mssqllocaldb;Database=EFGetStarted.ConsoleApp.NewDb;Trusted_Connection=True;"
  },
}