cs11dotnet7/vscode/PracticalApps/Northwind.Common.EntityModels.SqlServer/Territory.cs
2022-03-13 16:17:01 +00:00

34 lines
933 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Packt.Shared
{
public partial class Territory
{
public Territory()
{
Employees = new HashSet<Employee>();
}
[Key]
[Column("TerritoryID")]
[StringLength(20)]
public string TerritoryId { get; set; } = null!;
[StringLength(50)]
public string TerritoryDescription { get; set; } = null!;
[Column("RegionID")]
public int RegionId { get; set; }
[ForeignKey("RegionId")]
[InverseProperty("Territories")]
public virtual Region Region { get; set; } = null!;
[ForeignKey("TerritoryId")]
[InverseProperty("Territories")]
public virtual ICollection<Employee> Employees { get; set; }
}
}