Files
agologum/api/src/Data/AppDbContext.cs
Blitblank a3a86d4fde
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s
fix entityframework identity dbContext
2026-03-21 16:10:53 -05:00

13 lines
269 B
C#

using agologumApi.Models;
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
public class AppDbContext : IdentityDbContext<User> {
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options) {
}
}