Is there a way using the fluentAPI within a DbContext to manually include ICollections that have been [NotMapped] in the model? I know how to manually ignore properties using the fluentAPI
modelBuilder.Entity<MyEntity>().Ignore(e => e.MyChildCollection);
But if the property was defined with the [NotMapped] attribute (see below), can it be "brought back" into the model?
[NotMapped]
public virtual ICollection<ChildEntityType> MyChildCollection { get; set; }