I'm using dot net core 2.0, I have 2 classes, with a many to many relation defined.
Each class has a corresponding definition like so:
public virtual ICollection<INSERT_CLASS_HERE> MyObjects { get; set; }
I'm finding that I can retrieve a particular object for name or Id from the DB Context, yet the Collection that makes the many relationship, is coming up null.
I feel like it's something simple, but its been some time since I last touched dotnet... let alone dotnet core.