I've got the following piece of code:
var SelectAll = eF.People.ToList();
People P1 = new People();
P1.PersonID = 4;
P1.Name = "Iman";
P1.Family = "Rajabi";
P1.Age = 40;
eF.People.Add(P1);
eF.SaveChanges();
I get the following error when adding a person: