Files
LudikZone/src/LudikZoneBlazor/Data/ApplicationDbContext.cs
mcmuzzle 6eacd4c480
All checks were successful
Main Build Process / generate documentation (pull_request) Successful in 14s
Main Build Process / generate documentation (push) Successful in 14s
changement du template pour inclure l'authentification
2024-09-05 23:20:34 +02:00

9 lines
260 B
C#

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace LudikZoneBlazor.Data;
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext<ApplicationUser>(options)
{
}