Esempio n. 1
0
File: CQ.cs Progetto: Sowz/CodeCaml
 /// <summary>
 ///     Inserts &lt;Or&gt; element with specified nested elements.
 /// </summary>
 public static CQOrElement Or(ICQElement left, ICQElement right)
 {
     return new CQOrElement(left, right);
 }
Esempio n. 2
0
 public CQAndElement(ICQElement left, ICQElement right)
 {
     _elements.Add(left);
     _elements.Add(right);
 }
Esempio n. 3
0
File: CQ.cs Progetto: Sowz/CodeCaml
 /// <summary>
 ///     Inserts &lt;And&gt; element with specified nested elements.
 /// </summary>
 public static CQAndElement And(ICQElement left, ICQElement right)
 {
     return new CQAndElement(left, right);
 }
Esempio n. 4
0
File: CQ.cs Progetto: Sowz/CodeCaml
 /// <summary>
 ///     Inserts &lt;Where&gt; element with specified nested element.
 /// </summary>
 public static string Where(ICQElement element)
 {
     return new CQWhereElement(element).GetCaml();
 }
Esempio n. 5
0
 public CQWhereElement(ICQElement element)
 {
     _elements.Add(element);
 }
Esempio n. 6
0
 public CQValueElement(ICQElement element, string type, bool includeTimeValue)
 {
     _elements.Add(element);
     Type = type;
     IncludeTimeValue = includeTimeValue;
 }
Esempio n. 7
0
 public CQValueElement(ICQElement element, string type)
 {
     _elements.Add(element);
     Type = type;
 }