Groupbybehavior.cs 643 B

12345678910111213141516171819
  1. //------------------------------------------------------------------------------
  2. // <copyright file="Groupbybehavior.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. public enum GroupByBehavior {
  10. Unknown = 0,
  11. NotSupported = 1,
  12. Unrelated = 2,
  13. MustContainAll = 3,
  14. ExactMatch = 4
  15. }
  16. }