I have one columnt call "Name" in EF using engineering reverse, i need to change HasMaxLength 50 to HasMaxLength 100.
I did change
this.Property(t => t.Name).HasMaxLength(100);
But not working, how i can update column name 50 to 100.
Thank's
I have one columnt call "Name" in EF using engineering reverse, i need to change HasMaxLength 50 to HasMaxLength 100.
I did change
this.Property(t => t.Name).HasMaxLength(100);
But not working, how i can update column name 50 to 100.
Thank's