実在物
public class Region
{
[Key]
public int ID;
public string Name;
public string Description;
}
モデル
public class RegionModel
{ [Key]
public int ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
エラー
System.Data.Edm.EdmEntityType: : EntityType 'Region' にはキーが定義されていません。この EntityType のキーを定義します。
System.Data.Edm.EdmEntitySet: EntityType: EntitySet "Regions" は、キーが定義されていないタイプ "Region" に基づいています。