IDomainConstraint.cs 579 B

12345678910111213141516171819202122232425262728
  1. //
  2. // System.Data.Mapping.IDomainConstraint
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Mapping {
  11. public interface IDomainConstraint
  12. {
  13. #region Properties
  14. bool CascadeDelete { get; }
  15. IDomainSchema DomainSchema { get; }
  16. IDomainFieldJoinCollection FieldJoins { get; }
  17. IDomainStructure FromDomainStructure { get; }
  18. string Name { get; }
  19. IDomainStructure ToDomainStructure { get; }
  20. #endregion // Properties
  21. }
  22. }
  23. #endif // NET_1_2