Newer
Older
NoteApi / Data / DbContext.cs
@fabre fabre 3 days ago 316 bytes 新表
using Microsoft.EntityFrameworkCore;

public class AppDbContext : DbContext
{
    public AppDbContext(DbContextOptions<AppDbContext> options)
        : base(options) { }

    public DbSet<HololiveSchedule> HololiveSchedule => Set<HololiveSchedule>();
    public DbSet<PixivImage> PixivImages => Set<PixivImage>();
}