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ů.
| 123456789101112 |
- 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);
- }
- }
- }
|