Ejemplo n.º 1
0
 /// <summary>
 /// Apply a "eq exact" constraint to the named property
 /// </summary>
 public AbstractCriterion EqExact(object value, double tolerance)
 {
     return(this.Process(SpatialRestrictions.EqExact(this.propertyName, value, tolerance)));
 }
 /// <summary>
 /// Apply a "eq exact" constraint to the named property
 /// </summary>
 public TReturn EqExact(object value, double tolerance)
 {
     return(this.Add(SpatialRestrictions.EqExact(this.propertyName, value, tolerance)));
 }