RavenDB Query Documents with Property Removed
In the RavenDB Studio, I can see 69 CustomVariableGroup documents. My query only returns 66 of them. After some digging, I see that the three docs that are not returned have the new class structure: a property was removed. Since I saved these three CustomVariableGroup documents, their structure is different from the other 66. Why though, when I query for all of them, do I only get the other 66 documents with the old structure? Both my C# code, and my query in LinqPad, only return the 66. Here's the LinqPad query: Session.Query<CustomVariableGroup>().Dump(); // returns 66 docs But, if I do this