Say I have a class called Test and I have a Create and Edit view. Say this class is incredibly simple
public class Test
{
    [Required]
    public string str { get; set; }
}
Is it possible to remove the required attribute when a user is editing this object?
 
     
    