有没有理由像这样指定每个表中的所有列
this.HasKey(t => t.EmployeeID);
// Properties
this.Property(t => t.LastName)
.IsRequired()
.HasMaxLength(20);
如果是,为什么?
有没有理由像这样指定每个表中的所有列
this.HasKey(t => t.EmployeeID);
// Properties
this.Property(t => t.LastName)
.IsRequired()
.HasMaxLength(20);
如果是,为什么?