core-admin icon indicating copy to clipboard operation
core-admin copied to clipboard

Show Many-To-Many - show join table

Open chaelli opened this issue 1 year ago • 0 comments

Hi

I have many-to-many connections done like this:

{
  [Key]
  public Guid ExampleAId { get; set; }
  public List<ExampleB> ExampleB { get; set; } = new();
}

public class ExampleB
{
  [Key]
  public Guid ExampleBId { get; set; }
  public List<ExampleA> ExampleA { get; set; } = new();
}

this automatically creates a table "ExampleAExampleB" where the two types are linked.

In CoreAdmin this table is invisible. Therefore I cannot create any links. Am I missing something or is this not supported?

chaelli avatar Mar 18 '25 14:03 chaelli