17 lines
507 B
C#
17 lines
507 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using xDataService.Providers;
|
|
using xFileService.Constants;
|
|
using xFileService.Models.Entities;
|
|
|
|
namespace xFileService.Configurations.Entities
|
|
{
|
|
public class XFileEntityConfiguration : XBaseEntityTypeConfiguration<XFile, Guid>
|
|
{
|
|
public override void Configure(EntityTypeBuilder<XFile> builder)
|
|
{
|
|
builder.ToTable(XFileServiceConstants.XFileTable);
|
|
}
|
|
}
|
|
} |