• Tutorials
  • Api Documentation
  • Download
  • Credits
Show / Hide Table of Contents
  • AutoCheck.Core
    • Output
    • Output.Log
    • Output.Style
    • Output.Type
    • Script
    • Script.ExecutionMode
    • Utils
    • Utils.OS
  • AutoCheck.Core.Connectors
    • Atom
    • Base
    • Compressed
    • Css
    • Csv
    • CsvDocument
    • Dmoj
    • GDrive
    • Html
    • Math
    • Odoo
    • Operator
    • PlainText
    • PlainText.PlainTextDocument
    • Postgres
    • Rss
    • Shell
    • TextStream
    • Xml
    • Xml.XmlNodeType
  • AutoCheck.Core.CopyDetectors
    • Base
    • Base.Mode
    • Css
    • Html
    • PlainText
    • PlainText.File
    • SourceCode
    • SqlLog
    • Xml
  • AutoCheck.Core.Events
    • LogUpdateEventArgs
    • StatusUpdateEventArgs
    • StatusUpdateEventArgs.ExecutionEvent
  • AutoCheck.Core.Exceptions
    • ArgumentInvalidException
    • ArgumentNotFoundException
    • ConfigFileMissingException
    • ConnectionInvalidException
    • ConnectorInvalidException
    • ConnectorNotFoundException
    • DocumentInvalidException
    • DownloadFailedException
    • ItemNotFoundException
    • PorpertyNotFoundException
    • QueryInvalidException
    • RegexInvalidException
    • ResultMismatchException
    • ScriptInvalidException
    • ScriptNotFoundException
    • StyleInvalidException
    • StyleNotAppliedException
    • StyleNotFoundException
    • TableInconsistencyException
    • VariableInvalidException
    • VariableNotFoundException
  • Google.DiffMatchPatch
    • Diff
    • DiffMatchPatch
    • Operation
    • Patch

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 Source

Filter(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 Source

Field

The filed name which will be used for filtering.

Declaration
public string Field { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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
| Improve this Doc View Source

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 Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX