DesignerDataRelationship.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DesignerDataRelationship.cs / 1 / DesignerDataRelationship.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.ComponentModel.Design.Data { 
 
    using System;
    using System.Collections; 

    /// 
    /// Represents a 1-to-1 or 1-to-many relationship between two tables in a
    /// data connection. A collection of this type is returned from the 
    /// DesignerDataTable.Relationships property.
    ///  
    public sealed class DesignerDataRelationship { 

        private ICollection _childColumns; 
        private DesignerDataTable _childTable;
        private string _name;
        private ICollection _parentColumns;
 
        /// 
        ///  
        public DesignerDataRelationship(string name, ICollection parentColumns, DesignerDataTable childTable, ICollection childColumns) { 
            _childColumns = childColumns;
            _childTable = childTable; 
            _name = name;
            _parentColumns = parentColumns;
        }
 
        /// 
        /// The columns in the child table that are part of the relationship. 
        ///  
        public ICollection ChildColumns {
            get { 
                return _childColumns;
            }
        }
 
        /// 
        /// The child table referenced by this relationship. 
        ///  
        public DesignerDataTable ChildTable {
            get { 
                return _childTable;
            }
        }
 
        /// 
        /// The name of the relationship, if any. 
        ///  
        public string Name {
            get { 
                return _name;
            }
        }
 
        /// 
        /// The columns in the parent table that are part of the relationship. 
        ///  
        public ICollection ParentColumns {
            get { 
                return _parentColumns;
            }
        }
    } 
}
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK