0
0No answers
Browser other questions tagged c# entity-framework-core blazor
You are not signed in. Login or sign up in order to post.0
Browser other questions tagged c# entity-framework-core blazor
You are not signed in. Login or sign up in order to post.
share how you set up the entities and dbset of that structure in EF
– Leandro Angelo
public partial class Eventoparticipante { public int Id { get; set; } public int Idevento { get; set; } public int Idparticipante { get; set; } public virtual Event Ideventonavigation { get; set; } public virtual Participant Idparticipantenavigation { get; set; } } public virtual Dbset<Eventoparticipante> Eventoparticipante { get; set; }
– Junior
edit the question with this information
– Leandro Angelo