using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; namespace EntityFramework.Jet.FunctionalTests.Migrations { [DbContext(typeof(Issue305Test.TiffFilesContext))] partial class TiffFilesContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { modelBuilder .HasAnnotation("ProductVersion", "1.0.0"); modelBuilder.Entity("ConsoleApplication3.FileInfo", b => { b.ToTable("FileInfo"); b.Property("FileInfoId") .ValueGeneratedOnAdd(); b.Property("BlindedName"); b.Property("ContainsSynapse"); b.Property("Path") .IsRequired(); b.Property("Quality"); b.HasKey("FileInfoId"); }); } } }