using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; using xCategoryService.Constants; using xCategoryService.Models.Entities; using xDataService.Providers; namespace xCategoryService.Configurations.Entities { public class XSubCategoryEntityConfiguration : XBaseEntityTypeConfiguration { public override void Configure(EntityTypeBuilder builder) { builder.ToTable(XCategoryServiceConstants.XSubCategoryTable); } } }