| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- //
- // System.Data.DataRelation.cs
- //
- // Author:
- // Daniel Morgan <[email protected]>
- //
- // (C) 2002 Daniel Morgan
- // (C) 2002 Ximian, Inc.
- //
- using System;
- using System.Runtime.Serialization;
- namespace System.Data
- {
- /// <summary>
- /// DataRelation is used for a parent/child relationship
- /// between two DataTable objects
- /// </summary>
- [Serializable]
- public class DataRelation {
- #region Constructors
- [MonoTODO]
- public DataRelation(string relationName,
- DataColumn parentColumn, DataColumn childColumn) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataRelation(string relationName,
- DataColumn[] parentColumns,
- DataColumn[] childColumns) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataRelation(string relationName,
- DataColumn parentColumn, DataColumn childColumn,
- bool createConstraints) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataRelation(string relationName,
- DataColumn[] parentColumns, DataColumn[] childColumns,
- bool createConstraints) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataRelation(string relationName,
- string parentTableName, string childTableName,
- string[] parentColumnNames, string[] childColumnNames,
- bool nested) {
- throw new NotImplementedException ();
- }
- #endregion // Constructors
- #region Properties
- public virtual DataColumn[] ChildColumns {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual ForeignKeyConstraint ChildKeyConstraint {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual DataTable ChildTable {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual DataSet DataSet {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public PropertyCollection ExtendedProperties {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual bool Nested {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- set {
- throw new NotImplementedException ();
- }
- }
- public virtual DataColumn[] ParentColumns {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual UniqueConstraint ParentKeyConstraint {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual DataTable ParentTable {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
- }
- public virtual string RelationName {
- [MonoTODO]
- get {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- set {
- throw new NotImplementedException ();
- }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void CheckStateForProperty() {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
|