FieldJoin.cs 866 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // System.Data.Mapping.FieldJoin
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.SqlXml;
  11. namespace System.Data.Mapping {
  12. public class FieldJoin
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public Field FromField {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public string FromFieldName {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public Relationship OwnerRelationship {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public Field ToField {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public string ToFieldName {
  33. get { throw new NotImplementedException (); }
  34. }
  35. #endregion // Properties
  36. }
  37. }
  38. #endif // NET_1_2