last ...
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using xCategoryService.Models.Entities;
|
||||
using xDataService.Providers;
|
||||
|
||||
namespace xCategoryService.Configurations.Entities
|
||||
{
|
||||
public class XSubCategoryEntityConfiguration : XBaseEntityTypeConfiguration<XSubCategory, int>
|
||||
{
|
||||
public override void Configure(EntityTypeBuilder<XSubCategory> builder)
|
||||
{
|
||||
builder.ToTable("SubCategories");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user