我是Web开发人员的新手,也是.Net的新用户。因此我开始学习本教程(使用vs 2015,MVC 5,EF 6.1.3):http://www.asp.net/mvc/overview/getting-started/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application
并将其应用于我想要进行车队管理的测试应用程序。我创建了我的种子类,现在我在配置部分,我想告诉EF使用初始化类。我的web.config文件看起来像这样,不像教程中那样(使用EF 6.1.0制作):
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
-->
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
</system.webServer>
</configuration>
据我所知,出于灵活性的原因,配置现在在Startup.cs中完成,但我找不到有关如何使用我创建的DbContext和我也为播种创建的Initialize类的信息。有什么想法吗?
干杯!