You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1001 B
C#
35 lines
1001 B
C#
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<int>("FileInfoId")
|
|
.ValueGeneratedOnAdd();
|
|
|
|
b.Property<string>("BlindedName");
|
|
|
|
b.Property<bool>("ContainsSynapse");
|
|
|
|
b.Property<string>("Path")
|
|
.IsRequired();
|
|
|
|
b.Property<int>("Quality");
|
|
|
|
b.HasKey("FileInfoId");
|
|
});
|
|
}
|
|
}
|
|
}
|