Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

change all string property max length

In EF 6 I can do something like this:

modelBuilder
  .Properties()
  .Where(p => p.PropertyType == typeof(string) && 
              p.GetCustomAttributes(typeof(MaxLengthAttribute), false).Length == 0)
  .Configure(p => p.HasMaxLength(2000));

since EF7 ModelBuilder doesn't have the Properties() function, how do I do same thing in EF7?

like image 925
capiono Avatar asked Jan 02 '17 12:01

capiono


1 Answers

I suppose this to be one of the "still lacking" functionalities in EF Core and expect it to be added in some later version.

Until then, the closest I can suggest (for v1.1.0) is as follows:

foreach (var p in modelBuilder.Model
    .GetEntityTypes()
    .SelectMany(t => t.GetProperties())
    .Where(p => p.ClrType == typeof(string) && p.GetMaxLength() == null))
{
    p.SetMaxLength(2000);
}
like image 93
Ivan Stoev Avatar answered Nov 10 '22 18:11

Ivan Stoev