Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Entity Framework Code First MaxLength e FixedLegth (char vs varchar)


Com a API fluente você pode usar IsFixedLength():
//Set StudentName column size to 50 and change datatype to nchar 
//IsFixedLength() change datatype from nvarchar to nchar
  modelBuilder.Entity<Student>()
                    .Property(p => p.StudentName)
                    .HasMaxLength(50).IsFixedLength();

Com anotações, você pode ditar o tipo:
[Column(TypeName = "char")]
[StringLength(2)]
public string MyCharField { get; set; }