Exemplo n.º 1
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, QueryProperty comparisonProperty) : this(queryProperty, comparisonProperty, null)
 {
 }
Exemplo n.º 2
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, QueryProperty comparisonProperty, object scalarValue)
 {
     this.property           = queryProperty;
     this.comparisonProperty = comparisonProperty;
     this.scalarValue        = scalarValue;
 }
Exemplo n.º 3
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, object scalarValue) : this(queryProperty, null, scalarValue)
 {
 }