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