Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialStewart Mandla Kohlisa
11,737 Pointswhat could be wrong with this code
pliz tel me what i am missing n what need to be added n removed
using System.ComponentModel.DataAnnotations;
namespace IssueReporter.Models
{
public class Issue
{
public enum SeverityLevel
{
Minor,
Major,
Critical
}
public int Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
[Display(Name = "Department")]
public int DepartmentId { get; set; }
public Department Department { get; set; }
public SeverityLevel Severity { get; set; }
public bool Reproducible { get; set; }
[Display(Name = "Description of Problem")]
[Required(Name = "DescriptionOfProblem")]
public string DescriptionOfProblem { get; set; }
}
}
1 Answer
Steven Parker
231,198 PointsThe "[Required]
" annotation doesn't take any parameters, it looks just as shown in the instructions (and here).
Also, the instructions tell you to add it to two of the properties. But sure to put it on both of them.