-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWhere.cs
More file actions
31 lines (25 loc) · 702 Bytes
/
Copy pathWhere.cs
File metadata and controls
31 lines (25 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//Author: Antonio Leonardo de Abreu Freire, Microsoft Certified ID: 13271836
//My profile: https://br.linkedin.com/in/antonio-leonardo
//Contacts: antonio.leonardo@outlook.com.br
using System;
using System.Xml.Serialization;
namespace CamlQueryApi
{
[Serializable, XmlRoot]
public sealed class Where : LogicalJoinsBase
{
[XmlElement]
public And[] And { get; set; }
[XmlElement]
public Or[] Or { get; set; }
[XmlElement]
public OrderBy OrderBy { get; set; }
[XmlElement]
public GroupBy GroupBy { get; set; }
public override string ToString()
{
return this.ToCamlString();
}
}
}