chore: add DB model, migrations & DbContext

This commit is contained in:
cuqmbr 2022-07-14 22:41:48 +03:00
parent 6c49a8a026
commit 75a4407c20
7 changed files with 157 additions and 0 deletions

View File

@ -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; }
}

View File

@ -0,0 +1,11 @@
using DatabaseModels;
using Microsoft.EntityFrameworkCore;
namespace Server.Data;
public class ServerDbContext : DbContext
{
public ServerDbContext(DbContextOptions<ServerDbContext> options) : base(options) { }
public DbSet<ScoreboardRecord> Scoreboard { get; set; } = null!;
}

View File

@ -0,0 +1,44 @@
// <auto-generated />
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<uint>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime>("PostTime")
.HasColumnType("TEXT");
b.Property<int>("Score")
.HasColumnType("INTEGER");
b.Property<string>("Username")
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("Scoreboard");
});
#pragma warning restore 612, 618
}
}
}

View File

@ -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<uint>(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
Username = table.Column<string>(type: "TEXT", nullable: true),
PostTime = table.Column<DateTime>(type: "TEXT", nullable: false),
Score = table.Column<int>(type: "INTEGER", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Scoreboard", x => x.Id);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Scoreboard");
}
}
}

View File

@ -0,0 +1,42 @@
// <auto-generated />
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<uint>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<DateTime>("PostTime")
.HasColumnType("TEXT");
b.Property<int>("Score")
.HasColumnType("INTEGER");
b.Property<string>("Username")
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("Scoreboard");
});
#pragma warning restore 612, 618
}
}
}

View File

@ -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<ServerDbContext>(o => o.UseSqlite());
var app = builder.Build();
// Configure the HTTP request pipeline.

View File

@ -7,11 +7,22 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.6" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers" />
<Folder Include="Migrations" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DatabaseModels\DatabaseModels.csproj" />
</ItemGroup>
</Project>