matthewrenze / clean-architecture-core

A sample app for my online course "Clean Architecture: Patterns, Practices, and Principles" in .NET Core
BSD 3-Clause "New" or "Revised" License
143 stars 65 forks source link

Problem to create database. sql #3

Open eric-net opened 1 month ago

eric-net commented 1 month ago

do you have the query to create the database in sql server ?

matthewrenze commented 1 month ago

@eric-net, you should be able to create the database simply by running the application. Entity Framework automatically creates the database the first time you run it -- if the database doesn't already exist. However, in the event you need to create the database manually, I've attached a SQL script to do so. The script will create the database, create the schema, and populate the data. Feel free to modify it as necessary.

create-clean-architecture-database.txt