У меня есть appsetting.json ниже
{
"MyConfig": {
"FolderAnnouncement": "Duyuru\\",
"BaseMediaUrl": "D:\\YoungTalent\\YTPanel\\YTPanel\\wwwroot\\images\\"
},
"ConnectionStrings": {
"MySqlCon": "Server=localhost;Database=kariyer_portal;Uid=root;Pwd=1234;",
"MsSqlCon": "Server=localhost\\SQLEXPRESS;Database=kariyer_portal;Trusted_Connection=True;ConnectRetryCount=0"
},
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*"
}
И у меня есть один класс MyConfig.
namespace YTPanel.Models.Model
{
public interface ITest { string GetFolders(string param); }
public class MyConfig: ITest
{
public MyConfig(IConfiguration configuration)
{
Configuration = configuration;
}
private readonly IConfiguration Configuration;
public string BaseMediaUrl { get; set; }
public string FolderAnnouncement { get; set; }
public string GetFolders(string param)
{
string here = Configuration["MyConfig:" + param];
return here;
}
}
}
Я хочу вызвать этот класс из другого класса
MyConfig conf;
private string SaveAnnouncement(IFormFile file=null,string base64=null)
{
string path = conf.GetFolders("FolderAnnouncement");
string imageUrl = Guid.NewGuid().ToString();
var mediaPath = conf.GetFolders("BaseMediaUrl");
string extension = Path.GetExtension(file.FileName);
var imagePath = mediaPath + path + imageUrl+extension;
if (!string.IsNullOrEmpty(base64))
{
byte[] bytes = Convert.FromBase64String(base64);
File.WriteAllBytes(imagePath, bytes);
}
else
{
using (var fileStream = new FileStream(imagePath, FileMode.Create))
{
file.CopyToAsync(fileStream);
}
}
return imageUrl+extension;
}
Я добавил ниже для ConfigureServices при запуске.
services.AddSingleton<ITest, MyConfig>();
Я не могу добраться до данных. Как я могу решить эту проблему.
Я хочу повторно установить appsonting json в одном классе, и я использую этот класс в любых классах, которые я хочу.
Заранее спасибо