From 75a4407c201efc79dd22b0f0e02dc38d409d20c4 Mon Sep 17 00:00:00 2001 From: cuqmbr Date: Thu, 14 Jul 2022 22:41:48 +0300 Subject: [PATCH] chore: add DB model, migrations & DbContext --- DatabaseModels/ScoreboardRecord.cs | 10 +++++ Server/Data/ServerDbContext.cs | 11 +++++ .../20220714194024_Scoreboard.Designer.cs | 44 +++++++++++++++++++ .../Migrations/20220714194024_Scoreboard.cs | 34 ++++++++++++++ .../ServerDbContextModelSnapshot.cs | 42 ++++++++++++++++++ Server/Program.cs | 5 +++ Server/Server.csproj | 11 +++++ 7 files changed, 157 insertions(+) create mode 100644 DatabaseModels/ScoreboardRecord.cs create mode 100644 Server/Data/ServerDbContext.cs create mode 100644 Server/Migrations/20220714194024_Scoreboard.Designer.cs create mode 100644 Server/Migrations/20220714194024_Scoreboard.cs create mode 100644 Server/Migrations/ServerDbContextModelSnapshot.cs diff --git a/DatabaseModels/ScoreboardRecord.cs b/DatabaseModels/ScoreboardRecord.cs new file mode 100644 index 0000000..c167d1f --- /dev/null +++ b/DatabaseModels/ScoreboardRecord.cs @@ -0,0 +1,10 @@ +namespace DatabaseModels; + +public class ScoreboardRecord +{ + public UInt32 Id { get; set; } + + public string? Username { get; set; } + public DateTime PostTime { get; set; } + public int Score { get; set; } +} \ No newline at end of file diff --git a/Server/Data/ServerDbContext.cs b/Server/Data/ServerDbContext.cs new file mode 100644 index 0000000..a684580 --- /dev/null +++ b/Server/Data/ServerDbContext.cs @@ -0,0 +1,11 @@ +using DatabaseModels; +using Microsoft.EntityFrameworkCore; + +namespace Server.Data; + +public class ServerDbContext : DbContext +{ + public ServerDbContext(DbContextOptions options) : base(options) { } + + public DbSet Scoreboard { get; set; } = null!; +} \ No newline at end of file diff --git a/Server/Migrations/20220714194024_Scoreboard.Designer.cs b/Server/Migrations/20220714194024_Scoreboard.Designer.cs new file mode 100644 index 0000000..7b7b51e --- /dev/null +++ b/Server/Migrations/20220714194024_Scoreboard.Designer.cs @@ -0,0 +1,44 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Server.Data; + +#nullable disable + +namespace Server.Migrations +{ + [DbContext(typeof(ServerDbContext))] + [Migration("20220714194024_Scoreboard")] + partial class Scoreboard + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.6"); + + modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("PostTime") + .HasColumnType("TEXT"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("Username") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("Scoreboard"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Server/Migrations/20220714194024_Scoreboard.cs b/Server/Migrations/20220714194024_Scoreboard.cs new file mode 100644 index 0000000..f808006 --- /dev/null +++ b/Server/Migrations/20220714194024_Scoreboard.cs @@ -0,0 +1,34 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Server.Migrations +{ + public partial class Scoreboard : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Scoreboard", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Username = table.Column(type: "TEXT", nullable: true), + PostTime = table.Column(type: "TEXT", nullable: false), + Score = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Scoreboard", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Scoreboard"); + } + } +} diff --git a/Server/Migrations/ServerDbContextModelSnapshot.cs b/Server/Migrations/ServerDbContextModelSnapshot.cs new file mode 100644 index 0000000..a08095e --- /dev/null +++ b/Server/Migrations/ServerDbContextModelSnapshot.cs @@ -0,0 +1,42 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Server.Data; + +#nullable disable + +namespace Server.Migrations +{ + [DbContext(typeof(ServerDbContext))] + partial class ServerDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "6.0.6"); + + modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("PostTime") + .HasColumnType("TEXT"); + + b.Property("Score") + .HasColumnType("INTEGER"); + + b.Property("Username") + .HasColumnType("TEXT"); + + b.HasKey("Id"); + + b.ToTable("Scoreboard"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Server/Program.cs b/Server/Program.cs index b54834d..43e88c6 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -1,3 +1,6 @@ +using Microsoft.EntityFrameworkCore; +using Server.Data; + var builder = WebApplication.CreateBuilder(args); // Add services to the container. @@ -5,6 +8,8 @@ var builder = WebApplication.CreateBuilder(args); builder.Services.AddControllers(); builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddDbContext(o => o.UseSqlite()); + var app = builder.Build(); // Configure the HTTP request pipeline. diff --git a/Server/Server.csproj b/Server/Server.csproj index ec26747..8bf0e71 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -7,11 +7,22 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + +