Class Postgres.Filter
Allows filtering the data source over an SQL operation.
Inheritance
System.Object
Postgres.Filter
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: AutoCheck.Core.Connectors
Assembly: AutoCheck.dll
Syntax
public class Filter
Constructors
| Improve this Doc View SourceFilter(String, Operator, Object)
Creates a new instance.
Declaration
public Filter(string field, Operator op, object value)
Parameters
Type | Name | Description |
---|---|---|
System.String | field | The filed name which will be used for filtering. |
AutoCheck.Core.Operator | op | The operation between the field name and its value, which result will be used for filtering. |
System.Object | value | The field value which will be used for filtering. |
Properties
| Improve this Doc View SourceField
The filed name which will be used for filtering.
Declaration
public string Field { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Operator
The operation between the field name and its value, which result will be used for filtering.
Declaration
public Operator Operator { get; set; }
Property Value
Type | Description |
---|---|
AutoCheck.Core.Operator |
Value
The field value which will be used for filtering.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()