I\'ve been searching around the web trying to figure out the right syntax to have Entity Framework Code First create my table with a column: varchar(max).
This is what I
Use [MaxLength] annotation.
[Column(TypeName = "varchar")] [MaxLength] public string MediaDesc { get; set; }