/Rhino.Etl.Core/Operations/JoinType.cs
http://github.com/ayende/rhino-etl · C# · 28 lines · 12 code · 1 blank · 15 comment · 0 complexity · c5c0759855e019d57830ca25235c18d0 MD5 · raw file
- namespace Rhino.Etl.Core.Operations
- {
- using System;
- /// <summary>
- /// Define the supported join types
- /// </summary>
- [Flags]
- public enum JoinType
- {
- /// <summary>
- /// Inner join
- /// </summary>
- Inner = 0,
- /// <summary>
- /// Left outer join
- /// </summary>
- Left = 1,
- /// <summary>
- /// Right outer join
- /// </summary>
- Right = 2,
- /// <summary>
- /// Full outer join
- /// </summary>
- Full = Left | Right
- }
- }