owlzyhoots
owlzyhoots
CC#
Created by owlzyhoots on 3/31/2025 in #help
✅ Relation Does not Exist when running Tests
My bad, just noticed I had forgotten to run the migration.
8 replies
CC#
Created by owlzyhoots on 3/31/2025 in #help
✅ Relation Does not Exist when running Tests
Then added it to Program.cs
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
app.ApplyMigrations();
}
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
app.ApplyMigrations();
}
8 replies
CC#
Created by owlzyhoots on 3/31/2025 in #help
✅ Relation Does not Exist when running Tests
I have an extension method for it:
public static class MigrationExtensions
{
public static void ApplyMigrations(this WebApplication app)
{
using var scope = app.Services.CreateScope();

var dbContext = scope.ServiceProvider.GetRequiredService<AppDbContext>();

dbContext.Database.Migrate();
}
}
public static class MigrationExtensions
{
public static void ApplyMigrations(this WebApplication app)
{
using var scope = app.Services.CreateScope();

var dbContext = scope.ServiceProvider.GetRequiredService<AppDbContext>();

dbContext.Database.Migrate();
}
}
8 replies
CC#
Created by Lolo on 3/29/2025 in #help
Beginner in C# – Need a Learning Path for Backend Web Dev
If you are a student(with the GitHub student dev pack), you can use Frontend Masters for 6 months. They have a great course on C# and Building WebAPIs with ASP.NET Core. I just completed them. Highly recommend.
17 replies