• Source
    1. using System.Collections.Generic;
    2. using System.ComponentModel.DataAnnotations;
    3.  
    4. namespace ExampleCodeFirst
    5. {
    6. public class Departments
    7. {
    8. [Key]
    9. public int Id { get; set; }
    10. public string Name { get; set; }
    11.  
    12. public virtual IEnumerable<Employee> Employees { get; set; } // Định nghĩa quan hệ one-to-many
    13. }
    14. }
    15.