Ejemplo n.º 1
0
Archivo: CQ.cs Proyecto: 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);
 }
Ejemplo n.º 2
0
 public CQAndElement(ICQElement left, ICQElement right)
 {
     _elements.Add(left);
     _elements.Add(right);
 }
Ejemplo n.º 3
0
Archivo: CQ.cs Proyecto: 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);
 }
Ejemplo n.º 4
0
Archivo: CQ.cs Proyecto: Sowz/CodeCaml
 /// <summary>
 ///     Inserts &lt;Where&gt; element with specified nested element.
 /// </summary>
 public static string Where(ICQElement element)
 {
     return new CQWhereElement(element).GetCaml();
 }
Ejemplo n.º 5
0
 public CQWhereElement(ICQElement element)
 {
     _elements.Add(element);
 }
Ejemplo n.º 6
0
 public CQValueElement(ICQElement element, string type, bool includeTimeValue)
 {
     _elements.Add(element);
     Type = type;
     IncludeTimeValue = includeTimeValue;
 }
Ejemplo n.º 7
0
 public CQValueElement(ICQElement element, string type)
 {
     _elements.Add(element);
     Type = type;
 }