what is the meaning of [required]?
what is the meaning of [required]?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ankit SharmaPosted Oct 6, 2017, 3:47 AM
Vighnesh GadekarPosted Oct 30, 2017, 6:57 AM
“using System.ComponentModel.DataAnnotations;” this namespace needs to be added to use [Required].
The required is used to check validations of the variable properties user can also provied custom error message using required.
Eg: [Required(ErrorMessage="Email address Required.")]
Hope this will help.