I have add some special characters to be accepted by the input text field In model
[RegularExpression(@"^[a-zA-Z./@/- ]+$", ErrorMessage = "The Last Name field should contain letters only.")]
public string LastName { get; set; }
This makes to throw error like parsing "^[a-zA-Z./@/- ]+$" - [x-y] range in reverse order
But requirement is to accept these " / , - @ " special character also by the field.