I'm using ASP.NET MVC 6 and Entity Framework 7.
My Model:
public class Contact {
public int[] SelectedEstimator { set; get; }
}
I get the following error:
System.InvalidOperationException: The property 'SelectedEstimator'
on entity type 'ContactsManagerV3.Models.Contact'
has not been added to the model or ignored.
If I change the SelectedEstimator property to an int, it works. How can I get int[] to work?
I was trying to follow MVC 6 - TagHelper Select