プロジェクトで Entity Framework を使用しています。
[Table("GetInfo")]
public class InDetails : IEntityWithRelationships
{
[Required]
[Key]
[Display(Name = "Primary Key", Description = "Primary Key")]
[Editable(false)]
[DatabaseGenerated(System.ComponentModel.DataAnnotations.DatabaseGeneratedOption.Identity)]
public long Pkey { get; set; }
[Required]
[Display(Name = "Facility ID", Description = "Facility ID is located at")]
public int FacilityID { get; set; }
public String Photo { get; set; }
[必須]/[表示]があるものとないものがあります。違いはなんですか?