Skip to main content
Filter by
Sorted by
Tagged with
5 votes
1 answer
5k views

Using the new .NET Aspire Let's explore a scenario involving two web apps: the main app, and the login app: var login = builder.AddProject<Projects.LoginApp_Web>("login"); builder....
Jaider's user avatar
  • 15.1k
2 votes
1 answer
1k views

I make my database in .NET Aspire in AppHost project like this: var db = builder.AddPostgres("db").WithPgAdmin(); var templateApiDb = db.AddDatabase("templateApiDb"); var ...
Kristián Masár's user avatar
0 votes
0 answers
145 views

I can't figure out how to manually update the database (without a workaround) in a .net Aspire app using Entity Framework Core. The issue is similar to this one, but my question is different: In my ...
Qrt's user avatar
  • 629