選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }