using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.ComponentModel.DataAnnotations.Schema;using System.ComponentModel.DataAnnotations;namespace MVCDemo.Models{ [Table("employeeDetails")] public class Employee { [Key] public int employeeId { get; set; } public string employeeName { get; set; } public string employeeGender { get; set; } public string employeeCity { get; set; } public int DepartmentId { get; set; } }}
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.ComponentModel.DataAnnotations.Schema;using System.ComponentModel.DataAnnotations;namespace MVCDemo.Models{ [Table("employeeDepartment")] public class Department { public int ID { get; set; } public string Name { get; set; } public List<Employee> Employees { get; set; } }}