Condition.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Data.Mapping.Condition
  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 Condition
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public Field LeftField {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public MappingConditionOperator Operator {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public Variable OwnerVariable {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public string RightConstant {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public Field RightField {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public MappingArgumentType RightOperandType {
  37. get { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. public MappingParameter RightParameter {
  41. get { throw new NotImplementedException (); }
  42. }
  43. #endregion // Properties
  44. }
  45. }
  46. #endif // NET_1_2