| 12345678910111213141516171819202122232425262728 |
- //
- // System.Data.Mapping.IDomainConstraint
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Mapping {
- public interface IDomainConstraint
- {
- #region Properties
- bool CascadeDelete { get; }
- IDomainSchema DomainSchema { get; }
- IDomainFieldJoinCollection FieldJoins { get; }
- IDomainStructure FromDomainStructure { get; }
- string Name { get; }
- IDomainStructure ToDomainStructure { get; }
- #endregion // Properties
- }
- }
- #endif // NET_1_2
|