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)); }
public static IRelationSelector By(string identifier, Expression expression, RelationFlags?flags = null) { return(RelationSelector.By(identifier, expression, flags)); }
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)); }
public static IRelationSelector By(string identifier, PropertyInfo property, RelationFlags?flags = null) { return(RelationSelector.By(identifier, property, flags)); }