- What is the default validation provider?
It's the data annotations validator.
- What do we call the methods that are used to render HTML fields?
HTML helpers.
- What is model metadata?
It's the code that describes what a model's properties are, such as their display name, whether or not they are required, what validation should they use, and so on.
- Does ASP.NET Core support client-side validation?
Yes, it does.
- What is the base interface that can be bound to an uploaded file?
IFormFile.
- What is unobtrusive validation?
It's the process by which adding a couple of JavaScript libraries automatically sets up validation...