Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RightOuterJoinedSource.cs
1using System;
3
5{
10 {
18 : base(Right, Left, Conditions)
19 {
20 }
21
25 protected override bool Flipped => true;
26 }
27}
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
ScriptNode Conditions
Conditions for join.
Definition: JoinedSource.cs:45
Data source formed through an LEFT [OUTER] JOIN of two sources.
Data source formed through an RIGHT [OUTER] JOIN of two sources.
override bool Flipped
If sources should be flipped in the JoinedObject instances created.
RightOuterJoinedSource(IDataSource Left, IDataSource Right, ScriptNode Conditions)
Data source formed through an RIGHT [OUTER] JOIN of two sources.
Interface for data sources that can be used in SQL statements.
Definition: IDataSource.cs:13