Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor context factory #171

Merged
merged 3 commits into from
Aug 4, 2019
Merged

Refactor context factory #171

merged 3 commits into from
Aug 4, 2019

Conversation

WajahatAliAbid
Copy link
Contributor

Added the default configuration files in the form of a helper method, along with the custom file modulemetadata.json and user secrets. Modified the Program.cs to use that secrets as well as refactored the code in VolvoxHeliosContextFactory to use that configuration instead of hard coded one.


optionsBuilder.UseSqlServer(configuration.GetConnectionString("VolvoxHeliosDatabase"), options=>
options.MigrationsAssembly("Volvox.Helios.Web"));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be Volvox.Helios.Service since that’s where the migrations are?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved the VolvoxHeliosContextFactory to Volvox.Helios.Web, since configurationBuilder uses method Directory.GetCurrentDirectory() and since it's .net core application, I figured it'd use the path for Volvox.Helios.Service build directory instead of intended Volvox.Helios.Web.
So it'd be Volvox.Helios.Web in this case.

Copy link
Contributor Author

@WajahatAliAbid WajahatAliAbid Aug 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The migration command will look for the IDesignTimeDbContextFactory and create migrations in specified output directory. We may need to pass argument -o ../Volvox.Helios.Service/Migrations in our migration command to save migrations in the existing folder. And it'll work as intended.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you test that this applies migrations properly on a new DB and an existing one? If it works as intended then we can move this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay got it

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay so I verified and realized you are right. It should match the assembly migrations are in. Before making the change it was creating complete database from scratch. I made the change you pointed towards and now without any changes it creates empty migration.

public partial class testmigration : Migration
    {
        protected override void Up(MigrationBuilder migrationBuilder)
        {

        }

        protected override void Down(MigrationBuilder migrationBuilder)
        {

        }
    }

So to verify, I made a change in Poll class and generated migration again and it resulted in this

public partial class testmigration2 : Migration
    {
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AddColumn<string>(
                name: "TestMessage",
                table: "Poll",
                maxLength: 300,
                nullable: false,
                defaultValue: "");
        }

        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropColumn(
                name: "TestMessage",
                table: "Poll");
        }
    }

which is the expected change.
FYI;
when I use the command

dotnet ef migrations add testmigration -o ../Volvox.Helios.Service/Migrations

it gives the error

Your target project 'Volvox.Helios.Web' doesn't match your migrations assembly 'Volvox.Helios.Service'. Either change your target project or change your migrations assembly.

so I change the command to this (by specifying the project)

dotnet ef migrations add testmigration -o ../Volvox.Helios.Service/Migrations -p ../Volvox.Helios.Service/Volvox.Helios.Service.csproj

it works. I'll update the pull request for the change.

@BillChirico BillChirico merged commit 4c56154 into master Aug 4, 2019
@BillChirico BillChirico deleted the refactor-context-factory branch August 4, 2019 20:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants