AspNet5SQLite.Migrations.DataEventRecordContextModelSnapshot.BuildModel C# (CSharp) Method

BuildModel() protected method

protected BuildModel ( ModelBuilder modelBuilder ) : void
modelBuilder ModelBuilder
return void
        protected override void BuildModel(ModelBuilder modelBuilder)
        {
            modelBuilder
                .HasAnnotation("ProductVersion", "1.0.0-rc2-20896");

            modelBuilder.Entity("AspNet5SQLite.Model.DataEventRecord", b =>
                {
                    b.Property<long>("Id")
                        .ValueGeneratedOnAdd();

                    b.Property<string>("Description");

                    b.Property<string>("Name");

                    b.Property<DateTime>("Timestamp");

                    b.HasKey("Id");

                    b.ToTable("DataEventRecords");
                });
        }
DataEventRecordContextModelSnapshot