Class Region
[Table("Regions")]
[PrimaryKey("Code", new string[] { "CountryCodeISO" })]
public class Region
- Inheritance
-
Region
- Inherited Members
Properties
Code
public required string Code { get; set; }
Property Value
Country
public Country? Country { get; set; }
Property Value
CountryCodeISO
[ForeignKey("Country")]
[MaxLength(3)]
public required string CountryCodeISO { get; set; }