Question:
Answer:
[StringLength(128)]
public string FirstName { get; set; }
Also i have disable unicode for all string properties this way:protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Properties<string>().Configure(p => p.IsUnicode(false));
}
The problem is that all string properties decorated with the
mentioned attribute are ignoring this setting when generating the
database schema, producing nvarchar datatype for the corresponding
database columns.
What is the correct way to disable unicode in this cases?Answer:
Seems to be a bug (or omission) in the new
PropertyConventionConfiguration
API. The following configuration does work, so it can serve as a work-around:
modelBuilder.Properties<string>().Configure(x => x.HasColumnType("VARCHAR"));
No comments:
Post a Comment