// using System; using DaSaSo.EntityFramework; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; namespace DaSaSo.EntityFramework.Migrations { [DbContext(typeof(DaSaSoDbContext))] partial class DaSaSoDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("Relational:MaxIdentifierLength", 63) .HasAnnotation("ProductVersion", "6.0.0-preview.7.21378.4") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); b.Property("BuildingSiteNumber") .IsRequired() .HasColumnType("text"); b.Property("ContactPerson") .IsRequired() .HasColumnType("text"); b.Property("Country") .IsRequired() .HasColumnType("text"); b.Property("ProjectId") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("ProjectId"); b.ToTable("Buildingsites"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Client", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); b.Property("Country") .IsRequired() .HasColumnType("text"); b.Property("Firstname") .IsRequired() .HasColumnType("text"); b.Property("LastName") .IsRequired() .HasColumnType("text"); b.Property("Postcode") .IsRequired() .HasColumnType("text"); b.Property("Street") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.ToTable("Clients"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Project", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); b.Property("ClientId") .HasColumnType("integer"); b.Property("Name") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("ClientId"); b.ToTable("Projects"); }); modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); b.Property("BuildingSiteId") .HasColumnType("integer"); b.Property("DN") .HasColumnType("integer"); b.Property("ObjektName") .IsRequired() .HasColumnType("text"); b.Property("PointFrom") .IsRequired() .HasColumnType("text"); b.Property("PointTo") .IsRequired() .HasColumnType("text"); b.Property("SewerLength") .HasColumnType("numeric"); b.Property("StreetName") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("BuildingSiteId"); b.ToTable("SewerObjects"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b => { b.HasOne("DaSaSo.Domain.Model.Project", null) .WithMany("BuildingSites") .HasForeignKey("ProjectId"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Project", b => { b.HasOne("DaSaSo.Domain.Model.Client", "Client") .WithMany("Projects") .HasForeignKey("ClientId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Client"); }); modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b => { b.HasOne("DaSaSo.Domain.Model.Buildingsite", "BuildingSite") .WithMany("SewerObjects") .HasForeignKey("BuildingSiteId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("BuildingSite"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b => { b.Navigation("SewerObjects"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Client", b => { b.Navigation("Projects"); }); modelBuilder.Entity("DaSaSo.Domain.Model.Project", b => { b.Navigation("BuildingSites"); }); #pragma warning restore 612, 618 } } }