ContosoCrafts
ContosoCrafts copied to clipboard
Hi, I follow the tutorial and blocking on the popup window step. I completely copy the code of ProductList.razor to avoid any typos and still can't pop up the window...
I had trouble making the cards show up in more than one column. I went through the Bootstrap files inside lib/bootstrap/dist/css and I couldn't find the .card-coulmns class. So I...

how to resolve possible null reference return in GetProducts
app.MapGet("/products", (context) => { IEnumerable products = app.Services.GetService().GetProducts(); var json = JsonSerializer.Serialize(products); return context.Response.WriteAsync(json); });