Class Postgres.Source
Allows the source selection for an SQL operation.
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 Source
Constructors
| Improve this Doc View SourceSource(String)
Creates a new instance.
Declaration
public Source(string source)
Parameters
Type | Name | Description |
---|---|---|
System.String | source | The source as 'schema.table'. |
Source(String, String)
Creates a new instance.
Declaration
public Source(string schema, string table)
Parameters
Type | Name | Description |
---|---|---|
System.String | schema | The source schema. |
System.String | table | The source table |
Properties
| Improve this Doc View SourceSchema
The source schema.
Declaration
public string Schema { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Table
The source table
Declaration
public string Table { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceToString()
Converts the current instance to an SQL compatible string representation
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()