RDFLimitModifier is a modifier which applies an upper-bound counter to the number of query results to be considered.
Inheritance: RDFModifier
Beispiel #1
0
 /// <summary>
 /// Adds the given modifier to the query
 /// </summary>
 public RDFConstructQuery AddModifier(RDFLimitModifier modifier)
 {
     if (modifier != null) {
         if (!this.Modifiers.Any(m => m is RDFLimitModifier)) {
              this.Modifiers.Add(modifier);
         }
     }
     return this;
 }
Beispiel #2
0
 /// <summary>
 /// Adds the given modifier to the query
 /// </summary>
 public RDFDescribeQuery AddModifier(RDFLimitModifier modifier)
 {
     if (modifier != null)
     {
         if (!this.GetModifiers().Any(m => m is RDFLimitModifier))
         {
             this.QueryMembers.Add(modifier);
         }
     }
     return(this);
 }
Beispiel #3
0
 /// <summary>
 /// Adds the given modifier to the query
 /// </summary>
 public RDFConstructQuery AddModifier(RDFLimitModifier modifier)
 {
     if (modifier != null)
     {
         if (!this.Modifiers.Any(m => m is RDFLimitModifier))
         {
             this.Modifiers.Add(modifier);
         }
     }
     return(this);
 }