Is it possible to set default length of all string fields (unless I say otherwise)? At the moment it really bugs me to go and add something like
modelBuilder.Entity<Game>().Property(x => x.YardLine).HasMaxLength(256);
to each and every string field, just to avoid having nvarchar(max) on all my strings columns in the database.