We are in the process of upgrading to build 701.
Before the moving to 701 if we called session.Load<Person>(ids) and ids had a document id that no longer existed in RavenDB it would only return a list of the found documents. With 701 it is returning a list with a null item. Was this a planned change?
The following would of passed before 701
var ids = new[] { "person/1,person/2,person/missing" };
var docs = session.Load<Person>(ids);
//docs.Length is now 3
Assert.Equal(2, docs.Length);
Thanks,
Nick