//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner jeffreed // @backupOwner leil //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; namespace System.Data.Metadata.Edm { /// /// Represents the multiplicity information about the end of a relationship type /// public enum RelationshipMultiplicity { /// /// Lower Bound is Zero and Upper Bound is One /// ZeroOrOne, /// /// Both lower bound and upper bound is one /// One, /// /// Lower bound is zero and upper bound is null /// Many } }