using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace Nuuru.Server.Data.EntityConfigurations { public class SiteSettingConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.HasKey(s => s.Key); builder.Property(s => s.Key) .HasMaxLength(255); builder.Property(s => s.Value) .HasMaxLength(4000); } } }