比如我的某个Configuration是这么写的:
public class TemplateConfiguration : EntityTypeConfiguration<Template> { /// <summary> /// 构造函数 /// </summary> public TemplateConfiguration() { HasKey(x => x.Id); Property(x => x.Id) .IsRequired() .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity); Property(x => x.ClassId) .IsRequired(); Property(x => x.Name) .IsRequired() .HasMaxLength(50); Property(x => x.Content) .IsRequired() .HasMaxLength(null); Property(s => s.AddDate) .IsRequired(); HasRequired(a => a.TemplateClass).WithMany(c => c.Templates).HasForeignKey(a => a.ClassId); } }
请问我需要怎么写,才能在生成数据表的时候,把表的字段的描述添加进去?
谢谢。谢谢。谢谢。谢谢。
不知道,我也想知道!