Show / Hide Table of Contents

Class Join

The information about the join operator. The join operator links data from multiple inbound sources.

Inheritance
object
PushDownOperation
Join
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 Join : PushDownOperation

Properties

Condition

Declaration
[JsonProperty(PropertyName = "condition")]
public string Condition { get; set; }
Property Value
Type Description
string

The join condition.

Policy

Declaration
[JsonProperty(PropertyName = "policy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Join.PolicyEnum? Policy { get; set; }
Property Value
Type Description
Join.PolicyEnum?

The type of join.

In this article
Back to top