Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6908799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:36:30+00:00 2026-05-27T08:36:30+00:00

I am creating a code first MVC app with a separate class libraries for

  • 0

I am creating a code first MVC app with a separate class libraries for my Service layer, POCOs and Repository layer. In the Repository layer I have EF implementaions of my IRepository classes, a DbContext and the required references to Entity Framework. My MVC project does not reference EF.

Is there a way to setup my solution so that the database is recreated and seeded after a model change? All of the examples I have seen so far initialise this in the Global.asax file of an MVC project but my MVC project is independant of EF and has no access to the DbContext.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:36:30+00:00Added an answer on May 27, 2026 at 8:36 am

    You could register the initializer in a static constructor of your context:

    public class MyContext : DbContext
    {
        static MyContext()
        {
            Database.SetInitializer(new MyInitializer());
        }
    
        //...
    }
    

    Using a derived initializer which is in your Repository implementation library as well:

    public class MyInitializer : DropCreateDatabaseIfModelChanges<MyContext>
    {
        protected override void Seed(MyContext context)
        {
            // ...
        }
    }
    

    The static constructor would be executed when you create the first context instance and Seed will be called when you run a query, add or attach an entity to the context for the first time, etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a multi-tenant Asp.Net MVC 3 Web app, and using EF4.1 code first
I often refactor code first by creating an inner class inside the class I'm
When creating a MVC code first application, you needed to place the following line
Setup Using MVC 3 + Code First Here are my classes public class Member
I am learning ASP.NET MVC and Entity Framework Code First, LINQ by creating a
I'm using Ninject with an MVC app, also using EF4.1 Code First. I'm getting
I am using Entity Framework code first and ASP.NET MVC 3. I have the
After creating a mvc 3 web site using code first & adding same date
I've written some code for a button action. First I'm creating a button UI
I have the following code for creating tabs. It works at the end of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.