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