I am generating Entity Framework classes in a .NET Core application using this command:
Scaffold-DbContext "Server=server name;Database=DB name;user id=user name;password=password;Trusted_Connection=False;Encrypt=True;"
Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models/DB
It is working well and creating models for all the tables and views in the database. But strangely it's not creating models for stored procedures.
Is there anything I am missing in scaffold syntax?