| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Data.Mapping.RelationshipMap
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Data.SqlXml;
- namespace System.Data.Mapping {
- public class RelationshipMap
- {
- #region Properties
-
- [MonoTODO]
- public MappingSchema OwnerMappingSchema {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Relationship SourceRelationship {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public IDomainConstraint TargetConstraint {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string TargetConstraintName {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|