如何从我的类库应用程序访问自定义配置?

发布于 2024-12-07 08:45:10 字数 148 浏览 0 评论 0原文

我的基础设施项目中有一个自定义配置,但是当我的应用程序启动时,只能识别我的 web.config。

我不想将此自定义配置文件的配置放在 web.config 中,因为此配置是基础设施层的职责。

如何在我的 Web 项目中使用另一个项目中的自定义配置?

I have a custom config in my Infrastructure Project, but when my app start only my web.config is recognized.

I don't want to place the configuration of this custom config file in my web.config because this configuration is responsability for Infrastructure Layer.

How I use this custom config from another project in my web project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

丘比特射中我 2024-12-14 08:45:10

之前对这个问题的回答没有告诉你一个关键点。

.NET 设计为每个AppDomain 都有一个配置过程。所有类库都将使用调用它们的应用程序的配置文件。在您的情况下,您的类库将使用 web.config。如果您的类库是从控制台应用程序使用的,那么它将使用 application.exe.config 文件。

当你仔细想想,这是唯一有意义的事情。如果您的类库是从两个单独的应用程序使用的,那么它将有两个单独的配置。这些配置必须代表调用应用程序进行管理。

The previous answers to this question are failing to inform you of a critical point.

.NET is designed to have a single configuration process for each AppDomain. All class libraries will use the configuration file of the application which calls them. In your case, your class library will use the web.config. If your class library were being used from a console application, then it would use the application.exe.config file.

When you think about it, this is the only thing that makes sense. If your class library is used from two separate applications, then it will have two separate configurations. These configurations must be managed on behalf of the calling application.

另类 2024-12-14 08:45:10

像这样的事情:

var exeMap = new ExeConfigurationFileMap {ExeConfigFilename = @"C:\Path\To\Your\File"};
Configuration myConfig = ConfigurationManager.OpenMappedExeConfiguration(
    exeMap, ConfigurationUserLevel.None
);

Something like this:

var exeMap = new ExeConfigurationFileMap {ExeConfigFilename = @"C:\Path\To\Your\File"};
Configuration myConfig = ConfigurationManager.OpenMappedExeConfiguration(
    exeMap, ConfigurationUserLevel.None
);
那请放手 2024-12-14 08:45:10

假设基础设施项目是一个类库,您是否考虑过创建属性以将 app.config(?) 设置公开给前端?

这是我的意思的一个例子。请记住,这只是一个示例。它是一个演示如何通过属性公开配置值的属性。在您的情况下,该属性将从您的自定义配置文件中检索一个值。

public string GetConfigurationValue(string Key)
{
    return GetValueFromConfiguration(Key);
}

我想知道的一件事是为什么您要创建自定义配置文件,而不是仅仅创建可以集成到 app.config 文件中的配置部分。看起来你让事情变得比他们需要的更加困难。

Assuming that the infrastructure project is a class library, have you considered creating properties to expose the app.config (?) settings to the front-end?

Here is an example of what I mean. Keep in mind that this is just an example. It's a property that demonstrates how to expose a config value through a property. In your case, the property would retrieve a value from your custom config file.

public string GetConfigurationValue(string Key)
{
    return GetValueFromConfiguration(Key);
}

One thing I'm wondering is why you're creating a custom configuration file rather than just creating a configuration section that you can integrate into the app.config file. It seems like you're making things much more difficult than they need to be.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文