'dbcontext scaffold --ouput-dir not working as expected in Linux

I run this:

❯ dotnet ef dbcontext scaffold 'Server=localhost,1433;Database=Pub;User ID=sa;Password=Banana100;Trusted_Connection=true;TrustServerCertificate=true;' Microsoft.EntityFrameworkCore.SqlServer --output-dir Models
Build started...
Build succeeded.
To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see http://go.microsoft.com/fwlink/?LinkId=723263.

But nothing is created in my Models and I'm not even getting any errors. I tried with another proyects and is not working. enter image description here

I have my nugget packages. enter image description here

And dotnet ef is working fine.

enter image description here

I'd really appreciate some help, I really want to use netcore in linux.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source