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