Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CommentConfiguration.cs 346B

123456789101112
  1. using Microsoft.EntityFrameworkCore.Metadata.Builders;
  2. namespace Diligent.WebAPI.Data.Configurations
  3. {
  4. public class CommentConfiguration : IEntityTypeConfiguration<Comment>
  5. {
  6. public void Configure(EntityTypeBuilder<Comment> builder)
  7. {
  8. builder.Property(c => c.Content).HasMaxLength(1024);
  9. }
  10. }
  11. }