diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-15 15:49:14 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2023-08-15 15:49:14 +1000 |
| commit | 8e94a12be4a56447e78d68c37def772bef8cade4 (patch) | |
| tree | 0a12c64f8e34da45df8ac8e4c484c83385aedb45 /HyperBooruContext.cs | |
| parent | 5b00f23b28e3a09a4120101a8be8802d009e5d84 (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 |
