I am following this strategy to create relations without navigation property EF Code First foreign key without navigation property (first answer)
Now what I wonder is that: If I have 2 objects with relationship
Parent { int Id, int ChildId }
Child { int Id, int ParentId }
As right now both Id is not yet created and there is no navigation property to link them. How can I add both parent and child in one dbContext.SaveChanges()