我有一个monolith项目,我正在尝试用完整的框架将一个ASP.NET应用程序转换为ASP.NET核心。如图所示,两个Web应用程序都在引用类库3。CL3包含业务逻辑,但也包含关于如何读取特定配置的逻辑(到目前为止,从Web.config文件中读取)。
由于在ASP.NET核心(基于appsettings.json环境)中读取配置的方式发生了变化,我不得不重写从CL3读取配置的部分。
有可能发生这样的情况吗?
#IF CALLED FROM ASP.NET
RETRIEVE CONFIGURATION FROM WEB.CONFIG
#ELSE (CALLED FROM ASP.NE
我已经设置了一个有很多性能计数器的(90+).However,的diagnostics.wadcfg,它没有反映在with容器块上。我还确保该文件位于BIN文件夹下。
我的webrole在OnStart()下面有代码片段:
// Get the diagnostic monitor for the specified role instance.
RoleInstanceDiagnosticManager roleInstanceDiagnosticManager =
new RoleInstanceDiagnosticManager(myStorageAccount
我是Service Fabric的新手,我想知道我是否可以实现以下目标。
在IIS中,我将使用绑定来实现以下目标:
例如。
sub1.mydomain.com.au:80 --> MyApp1 (This would be an ASP.NET Web Site or Web API)
sub2.mydomain.com.au:80 --> MyApp2 (This would be another ASP.NET Web Site or Web API)
如何在Service Fabric中执行此操作
我有两个网站在Service Fabric中作为服务运行:
WebServic
我对asp.net和使用Entity框架都是新手。我们必须创建一个使用实体模型的网站。我们将实体模型(数据库)导出为供asp.net网站使用的.dll。当我调用一个使用dll函数的函数时,我收到以下错误:
An exception of type 'System.ArgumentException' occurred in System.Data.Entity.dll but was not handled in user code
Additional information: The specified named connection is either not fou