last ...
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using xDataService.Providers;
|
||||
using xFileService.Models.Entities;
|
||||
|
||||
namespace xFileService.Configurations.Entities
|
||||
{
|
||||
public class XFileEntityConfiguration : XBaseEntityTypeConfiguration<XFile, Guid>
|
||||
{
|
||||
public override void Configure(EntityTypeBuilder<XFile> builder)
|
||||
{
|
||||
builder.ToTable("Files");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user