I am using Entity Framework Core 1.1.0 with migrations. When I run them with
dotnet ef database update
in Package Manager Console the console is full of applied SQL. Instead of this, I would like to have printed only names of migrations that are currently being applied. How can I do this?
I assume its configuration of your project.
To disable sql print try this
MigrationLoggerFactory
NullLogger
Here is an article which could also be helpful