About 27,000 results
Open links in new tab
  1. How to create database using code first migrations?

    To create a database using code-first migrations in Entity Framework using the Package Manager Console, you can follow these steps: 1- Open Visual Studio and open the project in which you have …

  2. How do you create a local database in visual studio

    Apr 3, 2019 · You've a really good tutorial's on the internet who helps you building a local database on visual studio. I'll give you a initial steps to build one: 1st: After you create your project, Go to Project …

  3. Entity Framework Core creating model from existing database

    With Entity Framework Core, how do you generate the EF model and the entities? According to ASP.NET Core - Existing Database Microsoft article you need to run a command like this one in the …

  4. c# - Create SQLite Database and table - Stack Overflow

    Jun 20, 2019 · Within C# application code, I would like to create and then interact with one or more SQLite databases. How do I initialize a new SQLite database file and open it for reading and writing? …

  5. Generating ERD diagrams within Visual Studio - Stack Overflow

    Assuming you already have a database, you can easily generate an ERD following the steps below. Ensure you installed either Microsoft SQL Server Data Tools or Microsoft Web Developer Tools in …

  6. How to define a database project for an existing database

    3 You can indeed create a database project from an existing database in VS2013. Connect to the server in SQL Server Object explorer, right click on the database and select Create New Project. This will …

  7. How to manually create a mdf file for localdb to use?

    A version of the instructions for Visual Studio 2012 is also available. Since you also mention SQL Server Management Studio, you can simply connect to the LocalDb instance and right-click on Databases, …

  8. Create New SQL Server Database in Visual Studio 2017

    Feb 22, 2018 · I am using Visual Studio 2017. From data connection when I create new SQL Server database, a pop up open and ask for server name. I refreshed but no server name display. What is …

  9. Create an ASP.NET Core MVC application with database-first approach

    Feb 26, 2024 · 3 This is the procedure to create ASP.NET Core MVC web sites, in the Database-First flow. As @Fredou mentioned, you first need to install an extension to Visual Studio (2022) from this …

  10. Can we create SQL Server database project in .NET 8 in Visual Studio …

    May 20, 2024 · In our solution, we have database projects in .NET Framework 4.6.2. We wanted to migrate these database projects to .NET 8, but we are not able to see .NET 8 in the "Target …