I wanna create a model class with a property type String and generate column with NCHAR(11), I using Fluent API for do this
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<Person>().Property(x => x.CPF).HasMaxLength(11).IsFixedLength();
}