// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using ROLAC.API.Data; #nullable disable namespace ROLAC.API.Migrations { [DbContext(typeof(AppDbContext))] partial class AppDbContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "8.0.11") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("ClaimType") .HasColumnType("text"); b.Property("ClaimValue") .HasColumnType("text"); b.Property("RoleId") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("RoleId"); b.ToTable("AspNetRoleClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("ClaimType") .HasColumnType("text"); b.Property("ClaimValue") .HasColumnType("text"); b.Property("UserId") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.HasIndex("UserId"); b.ToTable("AspNetUserClaims", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => { b.Property("LoginProvider") .HasColumnType("text"); b.Property("ProviderKey") .HasColumnType("text"); b.Property("ProviderDisplayName") .HasColumnType("text"); b.Property("UserId") .IsRequired() .HasColumnType("text"); b.HasKey("LoginProvider", "ProviderKey"); b.HasIndex("UserId"); b.ToTable("AspNetUserLogins", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => { b.Property("UserId") .HasColumnType("text"); b.Property("RoleId") .HasColumnType("text"); b.HasKey("UserId", "RoleId"); b.HasIndex("RoleId"); b.ToTable("AspNetUserRoles", (string)null); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => { b.Property("UserId") .HasColumnType("text"); b.Property("LoginProvider") .HasColumnType("text"); b.Property("Name") .HasColumnType("text"); b.Property("Value") .HasColumnType("text"); b.HasKey("UserId", "LoginProvider", "Name"); b.ToTable("AspNetUserTokens", (string)null); }); modelBuilder.Entity("ROLAC.API.Entities.AppRole", b => { b.Property("Id") .HasColumnType("text"); b.Property("ConcurrencyStamp") .IsConcurrencyToken() .HasColumnType("text"); b.Property("Description") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("Name") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.Property("NormalizedName") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.HasKey("Id"); b.HasIndex("NormalizedName") .IsUnique() .HasDatabaseName("RoleNameIndex"); b.ToTable("AspNetRoles", (string)null); }); modelBuilder.Entity("ROLAC.API.Entities.AppUser", b => { b.Property("Id") .HasColumnType("text"); b.Property("AccessFailedCount") .HasColumnType("integer"); b.Property("ConcurrencyStamp") .IsConcurrencyToken() .HasColumnType("text"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("Email") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.Property("EmailConfirmed") .HasColumnType("boolean"); b.Property("IsActive") .HasColumnType("boolean"); b.Property("LanguagePreference") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(10) .HasColumnType("character varying(10)") .HasDefaultValue("en"); b.Property("LastLoginAt") .HasColumnType("timestamp with time zone"); b.Property("LockoutEnabled") .HasColumnType("boolean"); b.Property("LockoutEnd") .HasColumnType("timestamp with time zone"); b.Property("MemberId") .HasColumnType("integer"); b.Property("NormalizedEmail") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.Property("NormalizedUserName") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.Property("PasswordHash") .HasColumnType("text"); b.Property("PhoneNumber") .HasColumnType("text"); b.Property("PhoneNumberConfirmed") .HasColumnType("boolean"); b.Property("SecurityStamp") .HasColumnType("text"); b.Property("TwoFactorEnabled") .HasColumnType("boolean"); b.Property("UserName") .HasMaxLength(256) .HasColumnType("character varying(256)"); b.HasKey("Id"); b.HasIndex("MemberId") .IsUnique() .HasFilter("\"MemberId\" IS NOT NULL"); b.HasIndex("NormalizedEmail") .HasDatabaseName("EmailIndex"); b.HasIndex("NormalizedUserName") .IsUnique() .HasDatabaseName("UserNameIndex"); b.ToTable("AspNetUsers", (string)null); }); modelBuilder.Entity("ROLAC.API.Entities.Expense", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Amount") .HasColumnType("decimal(18,2)"); b.Property("CategoryGroupId") .HasColumnType("integer"); b.Property("CheckNumber") .HasMaxLength(50) .HasColumnType("character varying(50)"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("DeletedAt") .HasColumnType("timestamp with time zone"); b.Property("DeletedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Description") .IsRequired() .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("ExpenseDate") .HasColumnType("date"); b.Property("IsDeleted") .HasColumnType("boolean"); b.Property("MemberId") .HasColumnType("integer"); b.Property("MinistryId") .HasColumnType("integer"); b.Property("Notes") .HasColumnType("text"); b.Property("PaidAt") .HasColumnType("timestamp with time zone"); b.Property("PaidBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("ReceiptBlobPath") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("ReviewNotes") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("ReviewedAt") .HasColumnType("timestamp with time zone"); b.Property("ReviewedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Status") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(30) .HasColumnType("character varying(30)") .HasDefaultValue("Draft"); b.Property("SubCategoryId") .HasColumnType("integer"); b.Property("SubmittedAt") .HasColumnType("timestamp with time zone"); b.Property("SubmittedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Type") .IsRequired() .HasMaxLength(30) .HasColumnType("character varying(30)"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("VendorName") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.HasKey("Id"); b.HasIndex("CategoryGroupId"); b.HasIndex("ExpenseDate"); b.HasIndex("MemberId"); b.HasIndex("MinistryId"); b.HasIndex("Status") .HasFilter("\"IsDeleted\" = false"); b.HasIndex("SubCategoryId"); b.ToTable("Expenses"); }); modelBuilder.Entity("ROLAC.API.Entities.ExpenseCategoryGroup", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("IsActive") .HasColumnType("boolean"); b.Property("Name_en") .IsRequired() .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Name_zh") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("SortOrder") .HasColumnType("integer"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.HasKey("Id"); b.ToTable("ExpenseCategoryGroups"); }); modelBuilder.Entity("ROLAC.API.Entities.ExpenseSubCategory", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("GroupId") .HasColumnType("integer"); b.Property("IsActive") .HasColumnType("boolean"); b.Property("Name_en") .IsRequired() .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Name_zh") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("SortOrder") .HasColumnType("integer"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.HasKey("Id"); b.HasIndex("GroupId"); b.ToTable("ExpenseSubCategories"); }); modelBuilder.Entity("ROLAC.API.Entities.FamilyUnit", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasColumnType("text"); b.Property("FamilyName_en") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("FamilyName_zh") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Notes") .HasColumnType("text"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasColumnType("text"); b.HasKey("Id"); b.ToTable("FamilyUnits"); }); modelBuilder.Entity("ROLAC.API.Entities.Giving", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Amount") .HasColumnType("decimal(18,2)"); b.Property("CheckNumber") .HasMaxLength(50) .HasColumnType("character varying(50)"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("GivingCategoryId") .HasColumnType("integer"); b.Property("GivingDate") .HasColumnType("date"); b.Property("IsAnonymous") .HasColumnType("boolean"); b.Property("MemberId") .HasColumnType("integer"); b.Property("Notes") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("OfferingSessionId") .HasColumnType("integer"); b.Property("PayPalTransactionId") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("PaymentMethod") .IsRequired() .HasMaxLength(20) .HasColumnType("character varying(20)"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("ZelleReferenceCode") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.HasKey("Id"); b.HasIndex("GivingCategoryId"); b.HasIndex("GivingDate"); b.HasIndex("OfferingSessionId") .HasFilter("\"OfferingSessionId\" IS NOT NULL"); b.HasIndex("MemberId", "GivingDate"); b.ToTable("Givings"); }); modelBuilder.Entity("ROLAC.API.Entities.GivingCategory", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Description_en") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("Description_zh") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("IsActive") .HasColumnType("boolean"); b.Property("Name_en") .IsRequired() .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Name_zh") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("SortOrder") .HasColumnType("integer"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.HasKey("Id"); b.ToTable("GivingCategories"); }); modelBuilder.Entity("ROLAC.API.Entities.Member", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Address") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("BaptismChurch") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("BaptismDate") .HasColumnType("date"); b.Property("City") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("Country") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(100) .HasColumnType("character varying(100)") .HasDefaultValue("USA"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("DateOfBirth") .HasColumnType("date"); b.Property("DeletedAt") .HasColumnType("timestamp with time zone"); b.Property("DeletedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Email") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("FamilyUnitId") .HasColumnType("integer"); b.Property("FirstName_en") .IsRequired() .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("FirstName_zh") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("Gender") .HasMaxLength(10) .HasColumnType("character varying(10)"); b.Property("IsDeleted") .HasColumnType("boolean"); b.Property("JoinDate") .HasColumnType("date"); b.Property("LanguagePreference") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(10) .HasColumnType("character varying(10)") .HasDefaultValue("en"); b.Property("LastName_en") .IsRequired() .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("LastName_zh") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("NickName") .HasMaxLength(100) .HasColumnType("character varying(100)"); b.Property("Notes") .HasColumnType("text"); b.Property("PhoneCell") .HasMaxLength(30) .HasColumnType("character varying(30)"); b.Property("PhoneHome") .HasMaxLength(30) .HasColumnType("character varying(30)"); b.Property("PhotoBlobPath") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("State") .HasMaxLength(50) .HasColumnType("character varying(50)"); b.Property("Status") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(20) .HasColumnType("character varying(20)") .HasDefaultValue("Member"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("ZipCode") .HasMaxLength(20) .HasColumnType("character varying(20)"); b.HasKey("Id"); b.HasIndex("Email") .HasFilter("\"Email\" IS NOT NULL"); b.HasIndex("FamilyUnitId"); b.HasIndex("Status") .HasFilter("\"IsDeleted\" = false"); b.ToTable("Members"); }); modelBuilder.Entity("ROLAC.API.Entities.Ministry", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Description_en") .HasColumnType("text"); b.Property("Description_zh") .HasColumnType("text"); b.Property("IsActive") .HasColumnType("boolean"); b.Property("Name_en") .IsRequired() .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("Name_zh") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("SortOrder") .HasColumnType("integer"); b.HasKey("Id"); b.ToTable("Ministries"); }); modelBuilder.Entity("ROLAC.API.Entities.MonthlyStatement", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("BankStatementBalance") .HasColumnType("decimal(18,2)"); b.Property("CalculatedClosingBalance") .HasColumnType("decimal(18,2)"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Difference") .HasColumnType("decimal(18,2)"); b.Property("FinalizedAt") .HasColumnType("timestamp with time zone"); b.Property("FinalizedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("IsFinalized") .HasColumnType("boolean"); b.Property("Month") .HasColumnType("integer"); b.Property("Notes") .HasColumnType("text"); b.Property("OpeningBalance") .HasColumnType("decimal(18,2)"); b.Property("TotalExpenses") .HasColumnType("decimal(18,2)"); b.Property("TotalGiving") .HasColumnType("decimal(18,2)"); b.Property("TotalOtherIncome") .HasColumnType("decimal(18,2)"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Year") .HasColumnType("integer"); b.HasKey("Id"); b.HasIndex("Year", "Month") .IsUnique(); b.ToTable("MonthlyStatements"); }); modelBuilder.Entity("ROLAC.API.Entities.OfferingSession", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CashTotal") .HasColumnType("decimal(18,2)"); b.Property("CheckTotal") .HasColumnType("decimal(18,2)"); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("CreatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("Difference") .HasColumnType("decimal(18,2)"); b.Property("Notes") .HasColumnType("text"); b.Property("ProofPdfPath") .HasMaxLength(500) .HasColumnType("character varying(500)"); b.Property("ReconciledAt") .HasColumnType("timestamp with time zone"); b.Property("ReconciledBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("SessionDate") .HasColumnType("date"); b.Property("Status") .IsRequired() .ValueGeneratedOnAdd() .HasMaxLength(20) .HasColumnType("character varying(20)") .HasDefaultValue("Draft"); b.Property("SubmittedAt") .HasColumnType("timestamp with time zone"); b.Property("SubmittedBy") .HasMaxLength(450) .HasColumnType("character varying(450)"); b.Property("SystemTotal") .HasColumnType("decimal(18,2)"); b.Property("UpdatedAt") .HasColumnType("timestamp with time zone"); b.Property("UpdatedBy") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.HasKey("Id"); b.HasIndex("SessionDate") .IsUnique(); b.ToTable("OfferingSessions"); }); modelBuilder.Entity("ROLAC.API.Entities.RefreshToken", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("CreatedAt") .HasColumnType("timestamp with time zone"); b.Property("DeviceInfo") .HasMaxLength(200) .HasColumnType("character varying(200)"); b.Property("ExpiresAt") .HasColumnType("timestamp with time zone"); b.Property("IpAddress") .HasMaxLength(45) .HasColumnType("character varying(45)"); b.Property("ReplacedByHash") .HasMaxLength(64) .HasColumnType("character varying(64)"); b.Property("RevokedAt") .HasColumnType("timestamp with time zone"); b.Property("TokenHash") .IsRequired() .HasMaxLength(64) .HasColumnType("character varying(64)"); b.Property("UserId") .IsRequired() .HasMaxLength(450) .HasColumnType("character varying(450)"); b.HasKey("Id"); b.HasIndex("TokenHash") .IsUnique(); b.HasIndex("UserId"); b.ToTable("RefreshTokens"); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => { b.HasOne("ROLAC.API.Entities.AppRole", null) .WithMany() .HasForeignKey("RoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => { b.HasOne("ROLAC.API.Entities.AppUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => { b.HasOne("ROLAC.API.Entities.AppUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => { b.HasOne("ROLAC.API.Entities.AppRole", null) .WithMany() .HasForeignKey("RoleId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("ROLAC.API.Entities.AppUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => { b.HasOne("ROLAC.API.Entities.AppUser", null) .WithMany() .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); }); modelBuilder.Entity("ROLAC.API.Entities.Expense", b => { b.HasOne("ROLAC.API.Entities.ExpenseCategoryGroup", "CategoryGroup") .WithMany() .HasForeignKey("CategoryGroupId") .OnDelete(DeleteBehavior.Restrict) .IsRequired(); b.HasOne("ROLAC.API.Entities.Member", "Member") .WithMany() .HasForeignKey("MemberId") .OnDelete(DeleteBehavior.SetNull); b.HasOne("ROLAC.API.Entities.Ministry", "Ministry") .WithMany() .HasForeignKey("MinistryId") .OnDelete(DeleteBehavior.Restrict) .IsRequired(); b.HasOne("ROLAC.API.Entities.ExpenseSubCategory", "SubCategory") .WithMany() .HasForeignKey("SubCategoryId") .OnDelete(DeleteBehavior.Restrict) .IsRequired(); b.Navigation("CategoryGroup"); b.Navigation("Member"); b.Navigation("Ministry"); b.Navigation("SubCategory"); }); modelBuilder.Entity("ROLAC.API.Entities.ExpenseSubCategory", b => { b.HasOne("ROLAC.API.Entities.ExpenseCategoryGroup", "Group") .WithMany("SubCategories") .HasForeignKey("GroupId") .OnDelete(DeleteBehavior.Restrict) .IsRequired(); b.Navigation("Group"); }); modelBuilder.Entity("ROLAC.API.Entities.Giving", b => { b.HasOne("ROLAC.API.Entities.GivingCategory", "GivingCategory") .WithMany() .HasForeignKey("GivingCategoryId") .OnDelete(DeleteBehavior.Restrict) .IsRequired(); b.HasOne("ROLAC.API.Entities.Member", "Member") .WithMany() .HasForeignKey("MemberId") .OnDelete(DeleteBehavior.SetNull); b.HasOne("ROLAC.API.Entities.OfferingSession", "OfferingSession") .WithMany("Givings") .HasForeignKey("OfferingSessionId") .OnDelete(DeleteBehavior.Cascade); b.Navigation("GivingCategory"); b.Navigation("Member"); b.Navigation("OfferingSession"); }); modelBuilder.Entity("ROLAC.API.Entities.Member", b => { b.HasOne("ROLAC.API.Entities.FamilyUnit", "FamilyUnit") .WithMany() .HasForeignKey("FamilyUnitId") .OnDelete(DeleteBehavior.SetNull); b.Navigation("FamilyUnit"); }); modelBuilder.Entity("ROLAC.API.Entities.RefreshToken", b => { b.HasOne("ROLAC.API.Entities.AppUser", "User") .WithMany("RefreshTokens") .HasForeignKey("UserId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("User"); }); modelBuilder.Entity("ROLAC.API.Entities.AppUser", b => { b.Navigation("RefreshTokens"); }); modelBuilder.Entity("ROLAC.API.Entities.ExpenseCategoryGroup", b => { b.Navigation("SubCategories"); }); modelBuilder.Entity("ROLAC.API.Entities.OfferingSession", b => { b.Navigation("Givings"); }); #pragma warning restore 612, 618 } } }