我尝试按照本教程部署ASP.NET MVC5网站进行测试: https://docs.microsoft.com/en-us/aspnet/web-forms/overview/deployment/visual-studio-web-deployment/deploying-to-iis
在关于"为应用程序数据库配置部署的部分"第2点,我需要检查一个在我的屏幕上无法使用的框(执行代码优先迁移)。我的问题如下:我有一个洋葱架构,因此我的项目包含Entity Framework的上下文是在一个单独的项目中(我正在部署asp.net MVC 5项目),这意味着我不能{{ 1}}在这个项目中。我还更改了我的连接字符串,使其符合我在此帖子中准备的上下文的名称:https://stackoverflow.com/a/32866872/4714502。另一方面,我的DbSet与我的Entity Framework类有不同的名称,这会是一个问题吗?我这样做是因为我的表的语法非常笨拙,并且是一个要求(我不想在我的应用程序中使用这个命名约定)。比如表Web_Documents:
enable-migrations
至于我的架构:
依赖关系从4变为1.
这是我在存储库中的app.config:
DbSet<Web_Documents> WebDoc { get; set; }
我的数据库名称为<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<connectionStrings>
<add name="PrincipalServerContext" connectionString="Data Source=SMRFG12APP13\SQLEXPRESS;Initial Catalog=PrincipalServerDB;Integrated Security=SSPI" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
,上下文为PrincipalServerDB
现在我没有想法,也不知道我还能做些什么?
答案 0 :(得分:2)
在包含上下文的项目中创建一个App.config
文件,并在那里添加connectionString
。匹配Web.config
结构。例如:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=localhost;Initial Catalog=YourDb Security=sspi;Pooling=false;" providerName="System.Data.SqlClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
将此上下文项目设置为StartUp Project
后,在PMC
中将其设置为Default project
,然后运行Update-Database。现在它会更新。