Deagregation processor

This commit is contained in:
Michał Zieliński
2023-09-18 19:41:39 +02:00
parent 716ed532f1
commit a30b584ca7
7 changed files with 771 additions and 41 deletions

View File

@@ -17,7 +17,7 @@ namespace WebAPI.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "7.0.10")
.HasAnnotation("ProductVersion", "7.0.11")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
@@ -50,6 +50,9 @@ namespace WebAPI.Migrations
b.Property<int>("Number")
.HasColumnType("int");
b.Property<Guid?>("ParentId")
.HasColumnType("uniqueidentifier");
b.Property<string>("Source")
.IsRequired()
.HasColumnType("nvarchar(max)");
@@ -57,16 +60,13 @@ namespace WebAPI.Migrations
b.Property<int>("Type")
.HasColumnType("int");
b.Property<Guid?>("parentId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("CreatedById");
b.HasIndex("ModifiedById");
b.HasIndex("parentId");
b.HasIndex("ParentId");
b.ToTable("Layers");
});
@@ -268,15 +268,15 @@ namespace WebAPI.Migrations
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("WebAPI.Models.Layer", "parent")
b.HasOne("WebAPI.Models.Layer", "Parent")
.WithMany()
.HasForeignKey("parentId");
.HasForeignKey("ParentId");
b.Navigation("CreatedBy");
b.Navigation("ModifiedBy");
b.Navigation("parent");
b.Navigation("Parent");
});
modelBuilder.Entity("WebAPI.Models.ProcessSource", b =>