Is there a way to have the EF Core Power Tools create setters for collections, like so:
class Parent
{
// ...
public virtual ICollection<Child> Children { get; } // Setter is missing
}
The setter would be extremely useful with AutoMapper. Otherwise we have to explicitly specify the mapping like this.