* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
16 lines
452 B
C#
16 lines
452 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations;
|
|
|
|
public class ConfigElementConfiguration : IEntityTypeConfiguration<ConfigElement>
|
|
{
|
|
public void Configure(EntityTypeBuilder<ConfigElement> builder)
|
|
{
|
|
builder.ToTable("ConfigElement");
|
|
|
|
builder.HasIndex(ce => ce.Key)
|
|
.IsUnique();
|
|
}
|
|
} |