Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure EF6 to use varchar as default instead of nvarchar?

I know I can add a Data Annotation to each property to set it's column type to VARCHAR but I have hundreds of columns I want to be VARCHAR instead of NVARCHAR is there some way to setup EF6 to make this the default?

like image 939
Matthew Verstraete Avatar asked Jan 07 '14 00:01

Matthew Verstraete


1 Answers

Looking up EF conventions, I think you can do something like this:

modelBuilder.Properties<string>().Configure(c => c.HasColumnType("varchar"));

I largely ripped this off from http://msdn.microsoft.com/en-us/data/jj819164#order and haven't tested it.

[Edit:] As @Shimmy points out in the comments, there's also c => c.IsUnicode(false) which appears to do the same thing without hardcoding a column type.

like image 163
Jimmy Avatar answered Oct 02 '22 18:10

Jimmy