Exemple #1
0
 /// <summary>
 /// Apply a "overlaps" constraint to the named property
 /// </summary>
 public AbstractCriterion Overlaps(object value)
 {
     return(this.Process(SpatialRestrictions.Overlaps(this.propertyName, value)));
 }
 /// <summary>
 /// Apply a "overlaps" constraint to the named property
 /// </summary>
 public TReturn Overlaps(object value)
 {
     return(this.Add(SpatialRestrictions.Overlaps(this.propertyName, value)));
 }