question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support for running dotnet ef commands

See original GitHub issue

I would like to be able to run dotnet ef commands.

to be used for integration tests.

Task("Run-Tests")
    .Does(() =>
    {
        // create database
        DotNetCoreEfDatabaseUpdate();

        DotNetCoreTest();

        // drop database
        DotNetCoreEfDatabaseDrop(new DotNetCoreEfDatabaseSettings
        {
            Force = true
        });
    });

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
mvputcommented, Jan 15, 2017

First version is released with support for database drop and database update commands. https://github.com/cake-contrib/Cake.DotNetCoreEf/releases/tag/0.1.0

0reactions
gep13commented, Jan 15, 2017

@mvput great news! I think we can go ahead and close this issue.

Read more comments on GitHub >

github_iconTop Results From Across the Web

EF Core tools reference (.NET CLI)
Run the following commands to verify that EF Core CLI tools are correctly installed: .NET CLI Copy. dotnet ef. The output from the...
Read more >
EF Core Migrations using CLI
Open command prompt and navigate to your project's root folder and enter dotnet ef --help to list EF Core commands, as shown below....
Read more >
EF Core tools reference (Package Manager Console)
The commands run inside of Visual Studio using the Package Manager Console. These tools work with both .NET Framework and .NET Core projects....
Read more >
Command Line Interface commands
The full list of commands can be accessed from within the command line by typing dotnet ef --help : Usage: dotnet ef [options]...
Read more >
Command dotnet ef not found
I'm following the docs in order to create an initial migration. When I execute dotnet , I get the help section, meaning that...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found