Esempio n. 1
0
 public CamlWhere(Caml camlInner)
 {
     this.camlInner = camlInner;
 }
Esempio n. 2
0
		public static CamlView SimpleView(Caml caml, ViewType viewType)
		{
			return new CamlView(SimpleQuery(caml), viewType);
		}
Esempio n. 3
0
		public static CamlView View(Caml caml, ViewType viewType)
		{
			return new CamlView(caml, viewType);
		}
Esempio n. 4
0
		public static CamlQueryContainer Query(Caml caml)
		{
			return new CamlQueryContainer(caml);
		}
Esempio n. 5
0
		public static CamlQueryContainer SimpleQuery(Caml caml)
		{
			return Caml.Query(Caml.Where(caml));
		}
 public CamlQueryContainer(Caml innerCaml)
 {
     this.innerCaml = innerCaml;
 }
Esempio n. 7
0
		public static CamlWhere Where(Caml caml)
		{
			return new CamlWhere(caml);
		}
Esempio n. 8
0
 public CamlView(Caml camlInner, ViewType viewType)
 {
     this.camlInner = camlInner;
     this.viewType  = viewType;
 }
Esempio n. 9
0
 public CamlOr(Caml left, Caml right)
 {
     this.left = left;
     this.right = right;
 }
Esempio n. 10
0
 public static CamlView SimpleView(Caml caml, ViewType viewType)
 {
     return(new CamlView(SimpleQuery(caml), viewType));
 }
Esempio n. 11
0
 public static CamlView View(Caml caml, ViewType viewType)
 {
     return(new CamlView(caml, viewType));
 }
Esempio n. 12
0
 public static CamlQueryContainer SimpleQuery(Caml caml)
 {
     return(Caml.Query(Caml.Where(caml)));
 }
Esempio n. 13
0
 public static CamlQueryContainer Query(Caml caml)
 {
     return(new CamlQueryContainer(caml));
 }
Esempio n. 14
0
 public static CamlWhere Where(Caml caml)
 {
     return(new CamlWhere(caml));
 }
Esempio n. 15
0
 public CamlOr(Caml left, Caml right)
 {
     this.left  = left;
     this.right = right;
 }
Esempio n. 16
0
 public CamlWhere(Caml camlInner)
 {
     this.camlInner = camlInner;
 }
Esempio n. 17
0
 public CamlView(Caml camlInner,ViewType viewType)
 {
     this.camlInner = camlInner;
     this.viewType = viewType;
 }
Esempio n. 18
0
 public CamlQueryContainer(Caml innerCaml)
 {
     this.innerCaml = innerCaml;
 }