示例#1
0
 public static Property GetDiscriminator(this ClassInfo clazz) => clazz.GetChildProperty <Property>("discriminator");
示例#2
0
 public static IList <Collection> GetBags(this ClassInfo clazz) => clazz.GetChildProperties <Collection>("bag");
示例#3
0
 public static IdProperty GetIdProperty(this ClassInfo clazz) => clazz.GetChildProperty <IdProperty>("id");
示例#4
0
 public static IList <Collection> GetSets(this ClassInfo clazz) => clazz.GetChildProperties <Collection>("set");
示例#5
0
 public static IList <Property> GetOneToOneProperties(this ClassInfo clazz) => clazz.GetChildProperties <Property>("one-to-one");
示例#6
0
 public static IList <Property> GetProperties(this ClassInfo clazz) => clazz.GetChildProperties <Property>("property");
示例#7
0
 public static CompositeId GetCompositeId(this ClassInfo clazz) => clazz.GetChildProperty <CompositeId>("composite-id");
示例#8
0
 public static Property GetKeyProperty(this ClassInfo clazz) => clazz.GetChildProperty <Property>("key");