Hi,
I am new in MVC and I have done my Project like this,
I have create an Asp.net MVC application there are two model classes
using System;
using System.Collections.Generic;
usingSystem.ComponentModel.DataAnnotations;
usingSystem.ComponentModel.DataAnnotations.Schema;
usingSystem.Linq;
usingSystem.Web;
StudentPersonalInfo.cs
namespace DemoapplicationMultiModel.Models
{
public class StudentPersonalInfo
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public string StudentFirstName { get; set; }
public string StudentLastName { get; set; }
public int Age { get; set; }
public string BloodGroup { get; set; }
public string Address { get; set; }
}
}
EducationQualification.cs
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
usin ...
Go to the complete details ...