Esempio n. 1
0
 public void Customize(ClassInfo classInfo)
 {
     foreach (var prop in classInfo.GetChildProperties())
     {
         customizers.ForEach(customize => customize(prop));
     }
 }
Esempio n. 2
0
 public static IList <Collection> GetBags(this ClassInfo clazz) => clazz.GetChildProperties <Collection>("bag");
Esempio n. 3
0
 public static IList <Collection> GetSets(this ClassInfo clazz) => clazz.GetChildProperties <Collection>("set");
Esempio n. 4
0
 public static IList <Property> GetOneToOneProperties(this ClassInfo clazz) => clazz.GetChildProperties <Property>("one-to-one");
Esempio n. 5
0
 public static IList <Property> GetProperties(this ClassInfo clazz) => clazz.GetChildProperties <Property>("property");