最大長度

通過使用 .HasMaxLength() 方法,可以為屬性配置最大字元數。

using System.Data.Entity;    
// ..

public class PersonContext : DbContext
{
    // ..

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        // ..

        modelBuilder.Entity<Person>()
                    .Property(t => t.Name)
                    .HasMaxLength(100);
    }
}

生成的列具有指定的列長度:

StackOverflow 文件