コード例 #1
0
 public static Expression Include(QueryMapper mapper, Expression expression)
 {
     return(new RelationshipIncluder(mapper).Visit(expression));
 }
コード例 #2
0
 private RelationshipIncluder(QueryMapper mapper)
 {
     this.mapper = mapper;
     this.policy = mapper.Translator.Police.Policy;
 }
コード例 #3
0
 private RelationshipBinder(QueryMapper mapper)
 {
     this.mapper   = mapper;
     this.mapping  = mapper.Mapping;
     this.language = mapper.Translator.Linguist.Language;
 }
コード例 #4
0
 public static Expression Bind(QueryMapper mapper, Expression expression)
 {
     return(new RelationshipBinder(mapper).Visit(expression));
 }
コード例 #5
0
 public QueryTranslator(QueryLanguage language, QueryMapping mapping, QueryPolicy policy)
 {
     this.linguist = language.CreateLinguist(this);
     this.mapper   = mapping.CreateMapper(this);
     this.police   = policy.CreatePolice(this);
 }