- using Microsoft.EntityFrameworkCore.Metadata.Builders;
-
- namespace Diligent.WebAPI.Data.Configurations
- {
- public class CommentConfiguration : IEntityTypeConfiguration<Comment>
- {
- public void Configure(EntityTypeBuilder<Comment> builder)
- {
- builder.Property(c => c.Content).HasMaxLength(1024);
- }
- }
- }
|