@ -159,6 +159,7 @@ namespace EPAServeur.Context
{
entity.HasKey(e => e.IdFormation);
entity.Property(e => e.IdFormation).ValueGeneratedOnAdd();
entity.HasMany<ParticipationFormation>(e => e.ParticipationsFormation).WithOne(e => e.Formation);
});
modelBuilder.Entity<ModeFormation>(entity =>
@ -80,5 +80,10 @@ namespace EPAServeur.Models.Formation
/// Type de formation qui est lié à la formation
/// </summary>
public TypeFormation TypeFormation { get; set; }
/// <summary>
/// Liste des participations qui sont liées à la formation
public List<ParticipationFormation> ParticipationsFormation { get; set; }
}