Exemple #1
0
 private void GetIncludeProperties(List <string> lst, ObjectClass objClass)
 {
     foreach (var cls in objClass.GetObjectHierarchie())
     {
         foreach (var prop in cls.Properties.OfType <ObjectReferenceProperty>().Where(p => p.EagerLoading))
         {
             if (prop.GetIsList())
             {
                 continue;
             }
             lst.Add(prop.Name + Zetbox.API.Helper.ImplementationSuffix);
         }
     }
 }