Sean/Sean/Migrations/DbServiceModelSnapshot.cs

37 lines
996 B
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Sean.Services;
namespace Sean.Migrations
{
[DbContext(typeof(DbService))]
partial class DbServiceModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.4-servicing-10062");
modelBuilder.Entity("Sean.Models.ScoreUtilisateur", b =>
{
b.Property<ulong>("UserId");
b.Property<DateTime>("Date");
b.Property<string>("Name");
b.Property<int>("Score");
b.HasKey("UserId", "Date");
b.ToTable("Scores");
});
#pragma warning restore 612, 618
}
}
}