Support for running dotnet ef commands
See original GitHub issueI 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:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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
@mvput great news! I think we can go ahead and close this issue.