Arthur Vickers
Arthur Vickers
@amyboose `FindNavigation` won't work with many-to-many, but it should not be needed. What is the reason for using it here?
@amyboose Can you point to the documentation you followed?
@amyboose That documentation is significantly out-of-date and doesn't cover current best practices or newer features like many-to-many relationships. I'm also not sure that the advice there is generally useful for...
@blogcraft If you want to use explicit joins, then map the join table to an entity type and proceed as before.
@blogcraft For example, with a many-to-many between posts and tags: ```C# public class Post { public int Id { get; set; } public List Tags { get; } = new();...
/cc @bricelam
@dotnet/efteam Your chance to have input on the U.I.
Not sure mentioning the team here works. So /cc @bricelam @roji @AndriySvyryd @maumar @smitpatel @JeremyLikness
Notes from triage: * We don't currently have any guidance on how to do this. Putting this on the backlog to investigate what people should do here. * We should...
Assigning to @bricelam to review; may be not action here.