feat: Add EF configurations and migration for network-club system
EF Core Configurations (11 files): - SystemConfigurationConfiguration with Scope+Key composite index - ClubMembershipConfiguration with one-to-one User relationship - ClubFeatureConfiguration with IsActive+SortOrder index - UserClubFeatureConfiguration with composite unique index - NetworkWeeklyBalanceConfiguration with UserId+WeekNumber index - WeeklyCommissionPoolConfiguration with unique WeekNumber - UserCommissionPayoutConfiguration with multiple indexes - ClubMembershipHistoryConfiguration for audit trail - NetworkMembershipHistoryConfiguration for audit trail - CommissionPayoutHistoryConfiguration for audit trail - SystemConfigurationHistoryConfiguration for audit trail Configuration Updates: - UserConfiguration: Add NetworkParentId, LegPosition with indexes - UserWalletConfiguration: Add DiscountBalance field - ProductsConfiguration: Add IsClubExclusive, ClubDiscountPercent with index Infrastructure Updates: - ApplicationDbContext: Add 11 new DbSets for network-club entities - GlobalUsings: Add Domain entity namespaces Migration: - AddNetworkClubSystemV2: Complete database schema for network-club system
This commit is contained in:
+47
@@ -0,0 +1,47 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace CMSMicroservice.Infrastructure.Persistence.Configurations;
|
||||
|
||||
/// <summary>
|
||||
/// تعادلهای هفتگی شبکه باینری
|
||||
/// </summary>
|
||||
public class NetworkWeeklyBalanceConfiguration : IEntityTypeConfiguration<NetworkWeeklyBalance>
|
||||
{
|
||||
public void Configure(EntityTypeBuilder<NetworkWeeklyBalance> builder)
|
||||
{
|
||||
builder.HasQueryFilter(p => !p.IsDeleted);
|
||||
builder.Ignore(entity => entity.DomainEvents);
|
||||
|
||||
builder.HasKey(entity => entity.Id);
|
||||
builder.Property(entity => entity.Id).UseIdentityColumn();
|
||||
|
||||
builder.Property(entity => entity.UserId).IsRequired();
|
||||
builder.Property(entity => entity.WeekNumber).IsRequired().HasMaxLength(20);
|
||||
builder.Property(entity => entity.LeftLegBalances).IsRequired();
|
||||
builder.Property(entity => entity.RightLegBalances).IsRequired();
|
||||
builder.Property(entity => entity.TotalBalances).IsRequired();
|
||||
builder.Property(entity => entity.WeeklyPoolContribution).IsRequired();
|
||||
builder.Property(entity => entity.CalculatedAt).IsRequired(false);
|
||||
builder.Property(entity => entity.IsExpired).IsRequired();
|
||||
|
||||
// رابطه با User
|
||||
builder.HasOne(entity => entity.User)
|
||||
.WithMany(u => u.NetworkWeeklyBalances)
|
||||
.HasForeignKey(entity => entity.UserId)
|
||||
.OnDelete(DeleteBehavior.Restrict);
|
||||
|
||||
// Composite Index برای UserId و WeekNumber
|
||||
builder.HasIndex(e => new { e.UserId, e.WeekNumber })
|
||||
.IsUnique()
|
||||
.HasDatabaseName("IX_NetworkWeeklyBalance_UserId_WeekNumber");
|
||||
|
||||
// Index برای WeekNumber
|
||||
builder.HasIndex(e => e.WeekNumber)
|
||||
.HasDatabaseName("IX_NetworkWeeklyBalance_WeekNumber");
|
||||
|
||||
// Index برای IsExpired
|
||||
builder.HasIndex(e => e.IsExpired)
|
||||
.HasDatabaseName("IX_NetworkWeeklyBalance_IsExpired");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user