ChangeLog 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. 2008-05-14 Atsushi Enomoto <[email protected]>
  2. * DataTableExtensions.cs :
  3. implemented AsDataView() and CopyToDataTable().
  4. * EnumerableRowCollection.cs : added Table property for internal use.
  5. 2008-05-14 Atsushi Enomoto <[email protected]>
  6. * TypedTableBase.cs : serialization .ctor() does nothing here (it
  7. might do something in derived types. no need to throw NIE here).
  8. 2008-05-14 Atsushi Enomoto <[email protected]>
  9. * EnumerableRowCollectionExtensions.cs,
  10. OrderedEnumerableRowCollection.cs : implemented ThenBy().
  11. It required some generic refactoring.
  12. 2008-05-13 Jb Evain <[email protected]>
  13. * EnumerableRowCollection.cs: delete methods
  14. Select/Where/Cast that duplicate Linq to Objects
  15. methods.
  16. * EnumerableRowCollectionExtensions.cs
  17. TypedTableBase.cs, TypedTableBaseExtensions.cs: directly
  18. fallback to Linq to Objects.
  19. 2008-05-13 Atsushi Enomoto <[email protected]>
  20. * DataTableExtensions.cs, EnumerableRowCollection.cs,
  21. EnumerableRowCollectionExtensions.cs, EnumerableRowCollection_1.cs,
  22. OrderedEnumerableRowCollection.cs, TypedTableBase.cs,
  23. TypedTableBaseExtensions.cs : lots of significant refactoring to
  24. make collection/enumerable things unified.
  25. Implemented OrderBy() and OrderByDescending().
  26. 2008-05-13 Marek Habersack <[email protected]>
  27. * DataRowComparer_1.cs: implemented GetHashCode and Equals.
  28. 2008-05-13 Atsushi Enomoto <[email protected]>
  29. * DataTableExtensions.cs : implemented AsEnumerable().
  30. * DataRowExtensions.cs : implemented.
  31. * EnumerableRowCollection_1.cs : implemented.
  32. * EnumerableRowCollectionExtensions.cs :
  33. implemented Select() and Where().
  34. * OrderedEnumerableRowCollection.cs : base is not parameterless now.
  35. * TypedTableBaseExtensions.cs:
  36. some overloads can just delegate to others.
  37. * DataRowComparer_1.cs : (added some non-working code.)
  38. 2008-05-13 Atsushi Enomoto <[email protected]>
  39. * DataRowComparer.cs, DataRowComparer_1.cs, DataRowExtensions.cs,
  40. DataTableExtensions.cs, EnumerableRowCollection.cs,
  41. EnumerableRowCollectionExtensions.cs, EnumerableRowCollection_1.cs,
  42. OrderedEnumerableRowCollection.cs, TypedTableBase.cs,
  43. TypedTableBaseExtensions.cs : stubbed all.