You could retrieve all new objects (with EntityState = Added) from the ChangeTracker.Entries collection of the DbContext:
//VB.NET
Dim newEntities = context.ChangeTracker.Entries(Of YourEntityType)().Where(Function(e) e.State = EntityState.Added)
//C#:
var newEntities = context.ChangeTracker.Entries<YourEntityType>().Where(e => e.State == EntityState.Added);
Please remember to mark helpful posts as answer and/or helpful.