| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // System.Data.Mapping.Condition
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.SqlXml;
- namespace System.Data.Mapping {
- public class Condition
- {
- #region Properties
-
- [MonoTODO]
- public Field LeftField {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingConditionOperator Operator {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Variable OwnerVariable {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string RightConstant {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Field RightField {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingArgumentType RightOperandType {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public MappingParameter RightParameter {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|