/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

  1. namespace Rhino.Etl.Core.Operations
  2. {
  3. using System;
  4. /// <summary>
  5. /// Define the supported join types
  6. /// </summary>
  7. [Flags]
  8. public enum JoinType
  9. {
  10. /// <summary>
  11. /// Inner join
  12. /// </summary>
  13. Inner = 0,
  14. /// <summary>
  15. /// Left outer join
  16. /// </summary>
  17. Left = 1,
  18. /// <summary>
  19. /// Right outer join
  20. /// </summary>
  21. Right = 2,
  22. /// <summary>
  23. /// Full outer join
  24. /// </summary>
  25. Full = Left | Right
  26. }
  27. }