SupportedJoinOperators.cs 682 B

1234567891011121314151617181920
  1. //------------------------------------------------------------------------------
  2. // <copyright file="supportedJoinOperators.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">rickfe</owner>
  6. // <owner current="true" primary="false">stevesta</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.Common {
  9. [Flags]
  10. public enum SupportedJoinOperators {
  11. None = 0x00000000,
  12. Inner = 0x00000001,
  13. LeftOuter = 0x00000002,
  14. RightOuter = 0x00000004,
  15. FullOuter = 0x00000008
  16. }
  17. }