Esempio n. 1
0
 public static IRelationSelector <T, ICollection <TRelation> > By(string identifier, Expression <Func <T, ICollection <TRelation> > > expression, RelationFlags flags)
 {
     return(RelationSelector <T, ICollection <TRelation> > .By(identifier, expression, flags));
 }
Esempio n. 2
0
 public static IRelationSelector By(string identifier, Expression expression, RelationFlags?flags = null)
 {
     return(RelationSelector.By(identifier, expression, flags));
 }
Esempio n. 3
0
 public static IRelationSelector <T, TRelation> By <T, TRelation>(string identifier, Expression <Func <T, TRelation> > expression, RelationFlags?flags = null)
 {
     return(RelationSelector <T, TRelation> .By(identifier, expression, flags));
 }
Esempio n. 4
0
 public static IRelationSelector By(string identifier, PropertyInfo property, RelationFlags?flags = null)
 {
     return(RelationSelector.By(identifier, property, flags));
 }