using LANCommander.Data.Models; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace LANCommander.Data { public class DatabaseContext : IdentityDbContext { public DatabaseContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); builder.Entity() .HasMany(c => c.PublishedGames) .WithOne(g => g.Publisher) .IsRequired(false); builder.Entity() .HasMany(c => c.DevelopedGames) .WithOne(g => g.Developer) .IsRequired(false); builder.Entity() .HasMany(g => g.Archives) .WithOne(g => g.Game) .IsRequired(false); } public DbSet? Games { get; set; } public DbSet? Tags { get; set; } public DbSet? Companies { get; set; } } }