コード例 #1
0
ファイル: Global.asax.cs プロジェクト: Mejis/MVCSERV
 protected void Application_Start()
 {
     using (SYADMINContext DB = new SYADMINContext())
     {
         DB.Database.CreateIfNotExists();
     }
     AreaRegistration.RegisterAllAreas();
     FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
     RouteConfig.RegisterRoutes(RouteTable.Routes);
     BundleConfig.RegisterBundles(BundleTable.Bundles);
 }