Coder Social home page Coder Social logo

Comments (3)

dj-nitehawk avatar dj-nitehawk commented on May 29, 2024 1

you can put the migration classes in any project. but i'd recommend you put them in the same project as the entity models. or even any project that references MongoDB.Entities namespace. it's really up to you.

the important thing is to execute DB.Migrate() command at the startup of your application. execute it before any data access is done from your app. if your app is an asp.net app, then it would be inside the startup.cs file right after the DB initialization command.

the migrate command will discover all migration classes from all of your projects by default and execute them in order if they haven't been executed before.

you can specify which project to load the migration classes from by doing this:

DB.Migrate<SomeClass>();

instead of SomeClass you can enter any class from the same project as your migration classes. doesn't even have to be a migration class.

let me know if you need further clarification...

from mongodb.entities.

iamarifdev avatar iamarifdev commented on May 29, 2024

It would be great if we can use dotnet-ef tool commands to generate migrations based on changes.

from mongodb.entities.

dj-nitehawk avatar dj-nitehawk commented on May 29, 2024

well, this library nor mongodb has anything to do with entity-framework. so it's best to let go of ef-tools/commands mentality when working with mongodb.

if doing db migrations on app startup doesn't appeal to you and you need to run migrations from commandline, you can simply make a console app and make your own command.

in that console app, simply reference MongoDB.Entities library and also add a reference to the project where migration classes reside. then simply execute DB.Migrate() in that console app. easy...

but there's no need for it imho. i've been doing automated migrations with this library for a couple of sizeable (n-tier) projects of mine and everthings good. it even works nicely in multiple environments such as dev > staging > uat > production. i don't need to run any commands manually. on app startup the database is transformed to match the current schema of my entity classes.

if you have/find any specific cases/scenarios where the automated migrations don't work properly, let me know and i'll try to find a solution for those.

from mongodb.entities.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.