Fix relation Manga -> Tags and Manga -> Authors with many-many

This commit is contained in:
2024-12-16 21:52:35 +01:00
parent 03e89913e3
commit 729f018712
2 changed files with 4 additions and 4 deletions

View File

@ -55,10 +55,8 @@ public class Manga(
[ForeignKey("MangaConnectorId")]
public MangaConnector MangaConnector { get; private set; } = mangaConnector;
[ForeignKey("AuthorIds")]
public ICollection<Author> Authors { get; internal set; } = authors;
[ForeignKey("TagIds")]
public ICollection<MangaTag> Tags { get; private set; } = tags;
[ForeignKey("LinkIds")]