如何使用asp.net mvc实体framework5为我的数据库播种

时间:2016-11-25 11:55:38

标签: c# asp.net asp.net-mvc entity-framework asp.net-mvc-4

我按照tutorial编写了种子方法。我认为我的web.config文件连接有问题,但我无法弄明白。如果有人可以帮助我,我会很高兴。

FilmNetworkContext.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;

namespace FilmNetwork.Models
{
public class FilmNetworkContext : DbContext
{
    public FilmNetworkContext() : base("FilmNetworkContext")
        {
        Database.SetInitializer<FilmNetworkContext>(new CreateDatabaseIfNotExists<FilmNetworkContext>());

    }



    public DbSet<Director> Directors { get; set; }

    public DbSet<Film> Films { get; set; }

    public DbSet<Producer> Producers { get; set; }

    public DbSet<Genre> Genres { get; set; }
}
}

FilmNetworkInitializer.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace FilmNetwork.Models
{
public class FilmNetworkInitializer :     System.Data.Entity.DropCreateDatabaseIfModelChanges<FilmNetworkContext>
{
    protected override void Seed(FilmNetworkContext context)
    {
        var directors = new List<Director>
        {
            new Director {fName="Christopher",lName="Nolan",Age=46},
            new Director {fName="David", lName="Fincher",Age=54 },
            new Director {fName="Jason", lName="Reitman",Age=39 },
            new Director {fName="Danny", lName="Boyle",Age=60 },
            new Director {fName="Martin", lName="Scorsese",Age=74 },
            new Director {fName="Peter", lName="Jackson",Age=55 },
            new Director {fName="Steven", lName="Spielberg",Age=70},
            new Director {fName="J.J", lName="Abrams",Age=50 },
            new Director {fName="Joel", lName="Coen",Age=62 },
            new Director {fName="James", lName="Cameron",Age=62 }
        };

        directors.ForEach(s => context.Directors.Add(s));
        context.SaveChanges();
    }
    }
    } 

我有多套数据,我只是在这里展示一个。*

的Web.config

<?xml version="1.0" encoding="utf-8"?>
<!--
  For more information on how to configure your ASP.NET application, please  visit
 http://go.microsoft.com/fwlink/?LinkId=301880
 -->
<configuration>
<configSections>
    <!-- For more information on Entity Framework configuration, visit  http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<contexts>
<context type="FilmNetwork.Models.FilmNetworkContext, FilmNetwork">
  <databaseInitializer type="FilmNetwork.Models.FilmNetworkInitializer,  FilmNetwork" />
 </context>
 </contexts>
 <connectionStrings>
<add name="FilmNetworkContext" connectionString="Data Source= (LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-FilmNetwork- 20161121021743.mdf;Initial Catalog=aspnet-FilmNetwork-20161121021743;Integrated  Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
 <authentication mode="None" />
 <compilation debug="true" targetFramework="4.5.2" />
 <httpRuntime targetFramework="4.5.2" />
 <httpModules>
 <add name="ApplicationInsightsWebTracking"  type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule,  Microsoft.AI.Web" />
 </httpModules>
 </system.web>
 <system.webServer>
 <modules>
 <remove name="FormsAuthentication" />
  <remove name="ApplicationInsightsWebTracking" />
  <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
</modules>
<handlers>
  <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
  <remove name="OPTIONSVerbHandler" />
  <remove name="TRACEVerbHandler" />
  <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Owin.Security"  publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
    <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
    <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  </dependentAssembly>
</assemblyBinding>
</runtime>
<system.codedom>
 <compilers>
  <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
   <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
 </compilers>
 </system.codedom>
</configuration>

1 个答案:

答案 0 :(得分:0)

对于您设置标准初始值设定项的FilmNetworkContext

Database.SetInitializer< FilmNetworkContext>(new CreateDatabaseIfNotExists< FilmNetworkContext>());

但您需要使用自定义初始值设定项:

Database.SetInitializer<FilmNetworkContext>(new FilmNetworkInitializer());