diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-15 15:49:14 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2025-08-18 10:59:32 +1000 |
| commit | 38c60cee378b9c2ad42fc9dc79bc492b919a68f5 (patch) | |
| tree | 6b62f84aab4b7866432e5da8ae8fcb889795d58b /HyperBooruContext.cs | |
| parent | 07a4c7ead01514bd3f304f00abc38140a1d73634 (diff) | |
Convert Razor pages to Blazor
Diffstat (limited to 'HyperBooruContext.cs')
| -rw-r--r-- | HyperBooruContext.cs | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/HyperBooruContext.cs b/HyperBooruContext.cs deleted file mode 100644 index 3a9aa0f..0000000 --- a/HyperBooruContext.cs +++ /dev/null @@ -1,37 +0,0 @@ -using Microsoft.EntityFrameworkCore; -using System.Text.Json; - -namespace HyperBooru; - -public class HyperBooruDbContext : DbContext { - public DbSet<DbObject> Objects { get; set; } - public DbSet<DbTagDefinition> TagDefinitions { get; set; } - public DbSet<DbTag> Tags { get; set; } - public DbSet<DbMedia> Media { get; set; } - public DbSet<DbUploadedFile> UploadedFiles { get; set; } - - private IConfigService config; - - public HyperBooruDbContext(IConfigService config) => - this.config = config; - - protected override void OnConfiguring(DbContextOptionsBuilder options) { - options.UseLazyLoadingProxies(); - - var path = Path.Join(config.DataPath, "HyperBooru.db"); - options.UseSqlite($"Data Source = {config.DbPath}"); - } - - protected override void OnModelCreating(ModelBuilder modelBuilder) { - modelBuilder.Entity<DbObject>().ToTable("Objects"); - modelBuilder.Entity<DbTagDefinition>().ToTable("TagDefinitions"); - modelBuilder.Entity<DbTag>().ToTable("Tags"); - modelBuilder.Entity<DbMedia>().ToTable("Media"); - modelBuilder.Entity<DbUploadedFile>().ToTable("UploadedFiles"); - - modelBuilder.Entity<DbTagDefinition>().HasData(new DbTagDefinition[] { - new() { ObjectId = -1, Source = TagSource.Internal, Name = "nsfw" }, - new() { ObjectId = -2, Source = TagSource.Internal, Name = "ingest" } - }); - } -}
\ No newline at end of file |
