using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("Cm_Customer", Schema = "dbo")] public class Cm_Customer { public Cm_Customer() { CmCustomerLocations = new HashSet(); } [Key] public int Id { get; set; } public string Name { get; set; } public virtual ICollection CmCustomerLocations { get; set; } }