Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Try another new project: "Aplikacja WPF (.NET Framework)".
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I use Visual Studio 2022 / Net Framework 6.0
I try make like this
This also not help -> Scaffold-DbContext "Server=(localdb)\MSSqlLocalDB;Database=Northwind;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
Any ideas ?
Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Try another new project: "Aplikacja WPF (.NET Framework)".
This is not supported in VS 2022. Instead open the nuget package manager console and type the following command for the project:
Scaffold-DbContext -provider Microsoft.EntityFrameworkCore.SqlServer -connection "Data Source=Your server; Initial Catalog=your database; trusted_connection=true"