You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class EntityA
{
public int Key { get; set; }
public IList<int> EntityBIds { get; set; } // List of IDs of related EntityB objects
public ICollection<EntityB> EntityBs { get; set; } // Navigation property
}
public class EntityB
{
public int Key { get; set; }
public ICollection<EntityA> EntityAs { get; set; } // Navigation property
}
and EntityA.EntityBIds is set to be a JSON column using
Assuming my entities are like:
and EntityA.EntityBIds is set to be a JSON column using
How can I set up a Navigation bewteen EntityA and EntityB using EntityBIds?
Is it even possible?
Thanks and Regards
The text was updated successfully, but these errors were encountered: