Hi I am following the steps from this tutorial :
When I try to add a controller that use one of my models , I get this warning:
This is the model based on witch I am tryng to create the controller:
public class Student
{
public int StudentID { get; set; }
public string LastName { get; set; }
public string FirstMidName { get; set; }
public DateTime EnrollmentDate { get; set; }
public virtual ICollection<Enrollment> Enrollments { get; set; }
}
And this are the setting that I am adding when I try to create it :
I am not really sure what that warning is telling so I do not know If I posted the correct information needed in order to solve it.If anything else is needed I will post it later.
How can I solve this problem?