Harikanth Kompally

Harikanth Kompally

  • 1.6k
  • 93
  • 29.8k

Validation failed for one or more entities

Jan 21 2017 8:22 AM
Hai 
 
Am trying AngularJS - Crud operation so when i save data in database 
 

Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.

this error is coming up 
and am using JsonResult like
 
public JsonResult AddStudent(DataAccess.Student student)
{
//try
//{
if (ModelState.IsValid)
{
sampleEntity.Students.Add(student);
sampleEntity.SaveChanges();
return Json(new { status = "Student added successfully" });
}
}
 
how to slove this plz help me
 
check following attachment 
 

Answers (2)