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