ITableMapping.cs 576 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // System.Data.ITableMapping.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Associates a source table with a table in a DataSet, and is implemented by the DataTableMapping class, which is used in common by .NET data providers.
  13. /// </summary>
  14. public interface ITableMapping
  15. {
  16. IColumnMappingCollection ColumnMappings
  17. {
  18. get
  19. {
  20. }
  21. }
  22. string DataSetTable
  23. {
  24. get
  25. {
  26. }
  27. set
  28. {
  29. }
  30. }
  31. string SourceTable
  32. {
  33. get
  34. {
  35. }
  36. set
  37. {
  38. }
  39. }
  40. }
  41. }