//
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage;
using Microsoft.EntityFrameworkCore.Storage.Internal;
using System;
using Volo.Abp.TestApp.Domain;
using Volo.Abp.TestApp.EntityFrameworkCore;
namespace Volo.Abp.EntityFrameworkCore.Tests.Migrations
{
[DbContext(typeof(TestAppDbContext))]
partial class TestAppDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.0.0-rtm-26452");
modelBuilder.Entity("Volo.Abp.TestApp.Domain.Person", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd();
b.Property("Age");
b.Property("IsDeleted");
b.Property("Name");
b.Property("TenantId");
b.HasKey("Id");
b.ToTable("People");
});
modelBuilder.Entity("Volo.Abp.TestApp.Domain.Phone", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd();
b.Property("Number");
b.Property("PersonId");
b.Property("Type");
b.HasKey("Id");
b.HasIndex("PersonId");
b.ToTable("AppPhones");
});
modelBuilder.Entity("Volo.Abp.TestApp.Domain.Phone", b =>
{
b.HasOne("Volo.Abp.TestApp.Domain.Person")
.WithMany("Phones")
.HasForeignKey("PersonId")
.OnDelete(DeleteBehavior.Cascade);
});
#pragma warning restore 612, 618
}
}
}