Quiero guardar datos en dos tablas diferentes con linq y ajax post, y si me pueden ayudar sobre la forma en que debo seguir cuando lo envío al controlador, estaría muy agradecido con todos. hago
public class Student { public int StudentID { get; set; } public string Name { get; set; } public string LastName { get; set; } } public class StudentDetail { public int StudentDetailID { get; set; } public int StudentID { get; set; } public string Address { get; set; } public string Phone { get; set; } public string Number { get; set; } }