コード例 #1
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, QueryProperty comparisonProperty) : this(queryProperty, comparisonProperty, null)
 {
 }
コード例 #2
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, QueryProperty comparisonProperty, object scalarValue)
 {
     this.property           = queryProperty;
     this.comparisonProperty = comparisonProperty;
     this.scalarValue        = scalarValue;
 }
コード例 #3
0
 public QueryEntityRelationCondition(QueryProperty queryProperty, object scalarValue) : this(queryProperty, null, scalarValue)
 {
 }