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