Пример #1
0
 /// <summary>
 /// Apply a "relate" constraint to the named property
 /// </summary>
 public AbstractCriterion Relate(object value, string intersectionPatternMatrix)
 {
     return(this.Process(SpatialRestrictions.Relate(this.propertyName, value, intersectionPatternMatrix)));
 }
 /// <summary>
 /// Apply a "relate" constraint to the named property
 /// </summary>
 public TReturn Relate(object value, string intersectionPatternMatrix)
 {
     return(this.Add(SpatialRestrictions.Relate(this.propertyName, value, intersectionPatternMatrix)));
 }