using Company.Domain.ModuleAgg; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace CompanyManagment.EFCore.Mapping; public class ModuleMaspping : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.ToTable("TextManager_Module"); builder.HasKey(x => x.id); builder.Property(x => x.NameSubModule).IsRequired(); } }