Entity Collection Property is Empty when Loading from RavenDB
问题 I started using RavenDB today. When I save a class, I can see the Collection property in the DB: However, when I load the class, the collection has no items in it: public IEnumerable<CustomVariableGroup> GetAll() { using (IDocumentSession session = Database.OpenSession()) { IEnumerable<CustomVariableGroup> groups = session.Query<CustomVariableGroup>(); return groups; } } Is there some type of activation depth that needs to be set in order to see the properties that are POCOs? Edit (to show