I\'m having issues getting an optional one-to-many relationship to work.
My model is:
public class Person { public int Identifier { get; set; }
modelBuilder.Entity().HasMany(x => x.MemberOfDepartment).WithOptional();