Show / Hide Table of Contents

Class Select

The information about the select object.

Inheritance
object
PushDownOperation
Select
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class Select : PushDownOperation

Properties

IsDistinct

Declaration
[JsonProperty(PropertyName = "isDistinct")]
public bool? IsDistinct { get; set; }
Property Value
Type Description
bool?

Specifies whether the object is distinct.

SelectColumns

Declaration
[JsonProperty(PropertyName = "selectColumns")]
public List<ShapeField> SelectColumns { get; set; }
Property Value
Type Description
List<ShapeField>

An array of selected columns.

In this article
Back to top