6 questions
5
votes
1
answer
5k
views
In .NET Aspire, how to get the resolved endpoint to create a Link
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....
2
votes
1
answer
1k
views
.NET Aspire EF, can't make initial database update
I make my database in .NET Aspire in AppHost project like this:
var db = builder.AddPostgres("db").WithPgAdmin();
var templateApiDb = db.AddDatabase("templateApiDb");
var ...
0
votes
0
answers
145
views
Why can't I specify a startup-project when manually updating a database in .net Aspire EF?
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 ...