GroupByBehavior.cs 299 B

1234567891011121314151617181920212223
  1. //
  2. // System.Data.Common.GroupByBehavior.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Common {
  11. public enum GroupByBehavior
  12. {
  13. ExactMatch,
  14. MustContainAll,
  15. NotSupported,
  16. Unknown,
  17. Unrelated
  18. }
  19. }
  20. #endif