packetphysicist
✅ Unclear file structure
+---.github
| ---workflows
---API
+---Controllers
+---Data
+---Filters
+---Middleware
+---Migrations
+---Models
+---obj
+---Options
+---Properties
+---RESTFiles
+---Services
This is my current folder structure. It feels very unclear and way too messy. How can I clean this up?
I was thinking about putting Filters, Middleware and Options in the same folder as they're related. I wasn't sure how to name the parent folder of that though.
I have about 9 controllers, the same amount in services and a few more models.
31 replies
✅ EF not creating all tables from migration
So I can use
dotnet ef migrations add <name>
. It says it successfully created a migration. Then I use: dotnet ef database update
and itll create a database with a _EFMigrationsHistory table but not any of the other tables that I actually would like to use.4 replies